botpop/plugins/say_goodbye.rb
2015-08-12 01:05:47 +02:00

18 lines
410 B
Ruby

#encoding: utf-8
class SayGoodBye < BotpopPlugin
include Cinch::Plugin
match(/^!sg [\w\-\.].+/, use_prefix: false, method: :exec_sg)
HELP = ["!sg src_name"]
CONFIG = Botpop::CONFIG['say_goodbye'] || raise(MissingConfigurationZone, self.name)
ENABLED = CONFIG['enable'].nil? ? true : CONFIG['enable']
def exec_sg m
arg = m.message.split.last
m.reply CONFIG[arg].shuffle.first
end
end