forked from encrypt/TubiaBot
amici
This commit is contained in:
parent
56360ed49e
commit
282c012774
1 changed files with 13 additions and 1 deletions
14
tubiabot.rb
14
tubiabot.rb
|
@ -25,13 +25,25 @@ class Caffe
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class Amici
|
||||||
|
include Cinch::Plugin
|
||||||
|
|
||||||
|
match /lavor(o|are|atori)/
|
||||||
|
|
||||||
|
def execute(m)
|
||||||
|
users = [ "qup", "imega", "gresci","jigen","lgine","encrypt" ]
|
||||||
|
requests = [ "oggi non ho voglia di fare un cazzo", "caffè?", "andiamo al bar?" ]
|
||||||
|
m.reply users.sample+" "+users.sample+" "+requests.sample
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
bot = Cinch::Bot.new do
|
bot = Cinch::Bot.new do
|
||||||
configure do |c|
|
configure do |c|
|
||||||
c.server = "irc.mufhd0.net"
|
c.server = "irc.mufhd0.net"
|
||||||
c.nick = "TubiaBot"
|
c.nick = "TubiaBot"
|
||||||
c.channels = ["#indivia"]
|
c.channels = ["#indivia"]
|
||||||
c.plugins.plugins = [Caffe, ToniNegri]
|
c.plugins.plugins = [Caffe, ToniNegri,Amici]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue