Removed ChatLog.
This commit is contained in:
parent
ce11888851
commit
8f625867f7
@ -1,31 +0,0 @@
|
|||||||
|
|
||||||
-- 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)
|
|
||||||
|
|
||||||
cPluginManager.AddHook(cPluginManager.HOOK_CHAT, OnChat)
|
|
||||||
|
|
||||||
LOG("Initialized " .. Plugin:GetName() .. " v." .. Plugin:GetVersion())
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function OnChat(Player, Message)
|
|
||||||
-- Lets get loggin'
|
|
||||||
LOGINFO("[" .. Player:GetName() .. "]: " .. StripColorCodes(Message));
|
|
||||||
|
|
||||||
return false
|
|
||||||
end
|
|
Loading…
Reference in New Issue
Block a user