12906c026d
git-svn-id: http://mc-server.googlecode.com/svn/trunk@763 0a769ca7-a7f5-676a-18bf-c427514a06d6
15 lines
458 B
Lua
15 lines
458 B
Lua
function HandleGotoWorldCommand( Split, Player )
|
|
if( #Split ~= 2 ) then
|
|
Player:SendMessage( cChatColor.Green .. "Usage: /gotoworld [WorldName]" )
|
|
return true
|
|
end
|
|
|
|
if( Player:MoveToWorld(Split[2]) == false ) then
|
|
Player:SendMessage( cChatColor.Green .. "Could not move to world '" .. Split[2] .. "'!" )
|
|
return true
|
|
end
|
|
|
|
|
|
Player:SendMessage( cChatColor.Green .. "Moved successfully to '" .. Split[2] .. "'! :D" )
|
|
return true
|
|
end |