mechadrake/plugins/hello.rb

14 lines
195 B
Ruby

class Hello
include Cinch::Plugin
match "hello"
def execute(m)
m.reply "greetings, #{m.user.nick}"
end
def help
"hello - bully me into using slightly less sassy language"
end
end