Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require 'cinch'
- module Cinch::Plugins
- class Die
- include Cinch::Plugin
- match /die/
- def execute(m)
- if m.channel
- unless m.user.authname != "MyName";
- bot.info("Received valid quit command from #{m.user.nick}")
- m.reply("Very well. Goodbye.")
- bot.quit("on command of #{m.user.nick}")
- return;
- end
- m.reply("You are not authorized to use this command!")
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement