atrashhopper393129.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/atrashhopper393129.lua
  3. Script Purpose : Waypoint Path for atrashhopper393129.lua
  4. Script Author : Rylec
  5. Script Date : 10-17-2019 03:28:16
  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.98, 0.00, 138.04, 2, math.random(8, 18))
  18. MovementLoopAddLocation(NPC, -178.87, 0.00, 137.15, 2, 0)
  19. MovementLoopAddLocation(NPC, -178.88, 0.00, 137.13, 2, math.random(8, 18))
  20. MovementLoopAddLocation(NPC, -181.24, 0.00, 135.01, 2, math.random(8, 18))
  21. MovementLoopAddLocation(NPC, -180.22, 0.00, 137.23, 2, math.random(8, 18))
  22. MovementLoopAddLocation(NPC, -182.09, 0.00, 135.02, 2, 0)
  23. MovementLoopAddLocation(NPC, -182.09, 0.00, 135.01, 2, math.random(8, 18))
  24. MovementLoopAddLocation(NPC, -177.25, 0.06, 135.11, 2, math.random(8, 18))
  25. MovementLoopAddLocation(NPC, -178.00, 0.00, 141.24, 2, 0)
  26. MovementLoopAddLocation(NPC, -179.64, 0.00, 143.39, 2, 0)
  27. MovementLoopAddLocation(NPC, -180.17, 0.02, 144.82, 2, math.random(8, 18))
  28. MovementLoopAddLocation(NPC, -182.05, 0.00, 140.81, 2, 0)
  29. end