Files
cuberite-2a/MCServer/Plugins/SquirrelChatLog.nut
T

14 lines
216 B
Plaintext
Raw Normal View History

2012-07-08 21:01:08 +00:00
class SquirrelChatLog extends Plugin
{
2011-11-08 01:25:01 +00:00
function Initialize()
{
2012-07-08 21:01:08 +00:00
this.AddHook(Hook.Chat);
2011-11-08 01:25:01 +00:00
return true;
}
function OnChat(Message, Player)
2011-11-08 01:25:01 +00:00
{
::print(Player.GetName() + ": " + Message);
}
}