49a4613d94
Created a preprocessor template (define) for DoWith* functions Exported cWorld::FindAndDoWithPlayer(), cRoot::FindAndDoWithPlayer() and cRoot::ForEachPlayer() to Lua Added a function FindAndDoWithPlayer to cRoot and cWorld. It takes a part of a player name and finds a single player based on that. Fixed Core's MOTD to contain the correct URL to the MCServer site Fixed Core /kick command Fixed Core's WebAdmin kick git-svn-id: http://mc-server.googlecode.com/svn/trunk@779 0a769ca7-a7f5-676a-18bf-c427514a06d6
10 lines
351 B
Lua
10 lines
351 B
Lua
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 |