Paxiz submitted a new resource:
TFS 1.3 Random Teleport - movement script for random teleleport
Read more about this resource...
TFS 1.3 Random Teleport - movement script for random teleleport
Script random_teleport.lua in your movements:
Code:local TELEPORT_DESTINATIONS = { Position(1000, 1000, 7), -- teleport 1 Position(1020, 1020, 7), -- teleport 2 Position(1025, 1025, 7), -- teleport 3 Position(1030, 1030, 7) -- teleport 4 } function onStepIn(creature, item, position, fromPosition) if not creature:isPlayer() then return true end local destination = TELEPORT_DESTINATIONS[math.random(#TELEPORT_DESTINATIONS)]...
Read more about this resource...