06-27-2013, 06:08 PM
(06-27-2013, 06:02 PM)STR_Warrior Wrote: change the world = player:getworld() toDon't work, If i do it I get an error and player is not teleported to the spawn on changing world.
WorldName = Player:GetWorld():GetName()
I tried with this but player gamemode doesn't change.
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] .. "'!" ) WorldName = Player:GetWorld():GetName() World = Player:GetWorld() X[Player:GetName()] = Player:GetPosX() Y[Player:GetName()] = Player:GetPosY() Z[Player:GetName()] = Player:GetPosZ() Player:TeleportTo( World:GetSpawnX(), World:GetSpawnY(), World:GetSpawnZ() ) Player:SetGameMode(cRoot:Get():GetWorld(WorldName):GetGameMode()); return true end