This commit is contained in:
thegamer 2016-01-21 10:18:47 +01:00 committed by encrypt
parent 56360ed49e
commit 4e8adf41f5

View file

@ -25,13 +25,25 @@ class Caffe
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
configure do |c|
c.server = "irc.mufhd0.net"
c.nick = "TubiaBot"
c.channels = ["#indivia"]
c.plugins.plugins = [Caffe, ToniNegri]
c.plugins.plugins = [Caffe, ToniNegri,Amici]
end
end