pvpgn-server/lua/handle_channel.lua

23 lines
585 B
Lua
Raw Normal View History

--[[
Copyright (C) 2014 HarpyWar (harpywar@gmail.com)
This file is a part of the PvPGN Project http://pvpgn.pro
Licensed under the same terms as Lua itself.
]]--
function handle_channel_message(channel, account, text, message_type)
if config.quiz and channel.name == config.quiz_channel then
quiz_handle_message(account.name, text)
end
2014-06-17 02:53:49 -06:00
--DEBUG(text)
--return 1
end
function handle_channel_userjoin(channel, account)
2014-06-17 02:53:49 -06:00
--DEBUG(account.name.." joined "..channel.name)
end
function handle_channel_userleft(channel, account)
2014-06-17 02:53:49 -06:00
--DEBUG(account.name.." left "..channel.name)
end