Skip to content

Instantly share code, notes, and snippets.

@NuckChorris
Last active December 13, 2015 16:49
Show Gist options
  • Select an option

  • Save NuckChorris/4942899 to your computer and use it in GitHub Desktop.

Select an option

Save NuckChorris/4942899 to your computer and use it in GitHub Desktop.
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