blob: 69f3ee2453c03d888b6040bb7ade412b6975cca7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
function HandleMOTDCommand( Split, Player )
ShowMOTDTo( Player )
return true
end
function ShowMOTDTo( Player )
Player:SendMessage( cChatColor.Gold .. "Welcome to the MCServer test server!" );
Player:SendMessage( cChatColor.Gold .. "http://www.mcserver.org/" );
Player:SendMessage( cChatColor.Gold .. "Type /help for all commands" );
end
|