From 752057fb1b3a71058b5391bde9b0e21d87196539 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 13 Jan 2013 11:10:26 +0000 Subject: Forgotten files for previous merge commit (rev 1139) git-svn-id: http://mc-server.googlecode.com/svn/trunk@1140 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- MCServer/Plugins/ChatLog/plugin.lua | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) (limited to 'MCServer/Plugins/ChatLog/plugin.lua') diff --git a/MCServer/Plugins/ChatLog/plugin.lua b/MCServer/Plugins/ChatLog/plugin.lua index 0288d1aa9..9ef321b48 100644 --- a/MCServer/Plugins/ChatLog/plugin.lua +++ b/MCServer/Plugins/ChatLog/plugin.lua @@ -1,15 +1,30 @@ -function Initialize( Plugin ) - Plugin:SetName( "ChatLog" ) - Plugin:SetVersion( 2 ) + +-- plugin.lua + +-- Implements the main entrypoint for the plugin, as well as all the handling needed + +-- ChatLog plugin logs all chat messages into the server log + + + + + +function Initialize(Plugin) + Plugin:SetName("ChatLog") + Plugin:SetVersion(3) PluginManager = cRoot:Get():GetPluginManager() - PluginManager:AddHook( Plugin, cPluginManager.E_PLUGIN_CHAT ) + PluginManager:AddHook(Plugin, cPluginManager.HOOK_CHAT) - LOG( "Initialized " .. Plugin:GetName() .. " v." .. Plugin:GetVersion() ) + LOG("Initialized " .. Plugin:GetName() .. " v." .. Plugin:GetVersion()) return true end -function OnChat( Player, Message ) + + + + +function OnChat(Player, Message) -- Lets get loggin' LOGINFO("[" .. Player:GetName() .. "]: " .. Message); -- cgit v1.2.3