Guest User

Untitled

a guest
Oct 31st, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 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 != "Risardyo";
  11. return;
  12. end
  13. bot.quit("Quitting on command of #{msg.user.name}") ## What method is this line in?
  14. end
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment