12 lines
180 B
Ruby
12 lines
180 B
Ruby
|
class ToniNegri
|
||
|
include Cinch::Plugin
|
||
|
|
||
|
match "toninegri"
|
||
|
|
||
|
def execute(m)
|
||
|
@bot.nick = "toninegri"
|
||
|
m.reply "swasp: sono tuo padre"
|
||
|
@bot.nick = "TubiaBot"
|
||
|
end
|
||
|
end
|