10-10-2015, 04:19 PM
I tested the entity changed world hook. It works on my side. After I changed the world, I get teleported to the coordinates.
Reduced code:
Reduced code:
function OnEntityChangedWorld(Entity, World)
LOG("Entity changed world")
if Entity:IsPlayer() then
LOG("Entity is a player.")
Entity:TeleportToCoords(1034, 69, 660)
end
end

