Last active
December 13, 2015 16:49
-
-
Save NuckChorris/4942899 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'sold/module' | |
| class System < Sold::Module | |
| name 'System' | |
| description 'Commands for managing the bot.' | |
| help :restart, 'Restarts the bot.' | |
| command :restart do |args, user| | |
| user.can? :restart | |
| respond 'Restarting...' | |
| exit | |
| end | |
| on :up do | |
| puts 'Ohayou' | |
| end | |
| on :down do | |
| puts 'Bai' | |
| end | |
| on :recv_msg do |pkt| | |
| p pkt | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment