Guest User

Untitled

a guest
Oct 30th, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. require 'cinch'
  2.  
  3. module Cinch::Plugins
  4. class DieTest
  5. include Cinch::Plugin
  6.  
  7. match /die/
  8.  
  9. def execute(m)
  10. if m.user.authname != "IWhoIsAwesome";
  11. return;
  12. end
  13. end
  14. bot.quit("Quitting on command of #{msg.user.name}")
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment