mechadrake/plugins/rollcall.rb

15 lines
193 B
Ruby

class Rollcall
include Cinch::Plugin
set :prefix, //
match "!rollcall"
def execute(m)
m.reply "*yawns* did you miss me?"
end
def help
"rollcall - respond to !rollcall"
end
end