adiseasedratonga391871.lua 870 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/adiseasedratonga391871.lua
  3. Script Purpose : Waypoint Path for adiseasedratonga391871.lua
  4. Script Author : Rylec
  5. Script Date : 10-17-2019 04:40:45
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, -181.37, 0.01, 113.79, 2, math.random(12, 22))
  18. MovementLoopAddLocation(NPC, -181.83, 0.00, 114.09, 2, 0)
  19. MovementLoopAddLocation(NPC, -182.35, 0.24, 117.18, 2, math.random(12, 22))
  20. MovementLoopAddLocation(NPC, -183.91, 0.05, 126.53, 2, math.random(12, 22))
  21. MovementLoopAddLocation(NPC, -182.32, 0.00, 119.51, 2, 0)
  22. MovementLoopAddLocation(NPC, -182.21, 0.24, 116.95, 2, math.random(12, 22))
  23. end