1
0

Moved files used by MCServer to a special MCServer folder

git-svn-id: http://mc-server.googlecode.com/svn/trunk@763 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
faketruth
2012-08-20 12:20:20 +00:00
parent 674fe1e955
commit 12906c026d
53 changed files with 11 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
function Initialize( Plugin )
Plugin:SetName( "ChatLog" )
Plugin:SetVersion( 2 )
PluginManager = cRoot:Get():GetPluginManager()
PluginManager:AddHook( Plugin, cPluginManager.E_PLUGIN_CHAT )
LOG( "Initialized " .. Plugin:GetName() .. " v." .. Plugin:GetVersion() )
return true
end
function OnChat( Message, Player )
-- Lets get loggin'
LOGINFO("[" .. Player:GetName() .. "]: " .. Message);
return false
end