Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require 'cinch'
- module Cinch::Plugins
- class DieTest
- include Cinch::Plugin
- match /die/
- def execute(m)
- if m.user.authname != "Risardyo";
- return;
- end
- bot.quit("Quitting on command of #{msg.user.name}") ## What method is this line in?
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment