summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/gotoworld.lua
blob: d5113b66745e42ee950c25461d9cf35c32250b3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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