tcpbot/plugins/Helo.rb

15 lines
210 B
Ruby
Raw Normal View History

2013-07-01 17:02:17 +00:00
require 'cinch'
require_relative '../classes/Util.rb'
class Helo
include Cinch::Plugin
set :prefix, /^:/
extend Hooks::ACLHook
match /helo/;
def execute(m)
m.reply "helo #{m.user.name}"
end
end