TubiaBot/plugins/jops.rb
2016-03-08 18:10:59 +01:00

10 lines
177 B
Ruby

class Jops
include Cinch::Plugin
match /jops/
def execute(m)
cibo = ["tigelle", "crescentine"]
m.reply "jops: andiamo a mangiare le "+cibo.sample+" ?"
end
end