tcpbot/plugins/Helo.rb
2016-03-14 23:18:26 -06:00

17 lines
275 B
Ruby

require 'cinch'
require_relative '../classes/Util.rb'
class Helo
include Cinch::Plugin
include Util::PluginHelper
set :prefix, /^:/
@clist = %w{helo}
@@commands["helo"] = ":helo - say helo"
match /helo/;
def execute(m)
m.reply "helo #{m.user.name}"
end
end