12906c026d
git-svn-id: http://mc-server.googlecode.com/svn/trunk@763 0a769ca7-a7f5-676a-18bf-c427514a06d6
14 lines
216 B
Plaintext
14 lines
216 B
Plaintext
class SquirrelChatLog extends Plugin
|
|
{
|
|
function Initialize()
|
|
{
|
|
this.AddHook(Hook.Chat);
|
|
return true;
|
|
}
|
|
|
|
function OnChat(Message, Player)
|
|
{
|
|
::print(Player.GetName() + ": " + Message);
|
|
}
|
|
}
|