atrashhopper393128.lua 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/atrashhopper393128.lua
  3. Script Purpose : Waypoint Path for atrashhopper393128.lua
  4. Script Author : Rylec
  5. Script Date : 10-17-2019 03:28:10
  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, -177.10, 0.07, 135.19, 2, math.random(8, 18))
  18. MovementLoopAddLocation(NPC, -178.45, 0.00, 136.90, 2, 0)
  19. MovementLoopAddLocation(NPC, -181.03, 0.00, 141.14, 2, math.random(8, 18))
  20. MovementLoopAddLocation(NPC, -178.97, 0.00, 139.38, 2, 0)
  21. MovementLoopAddLocation(NPC, -178.98, 0.00, 139.37, 2, math.random(8, 18))
  22. MovementLoopAddLocation(NPC, -183.40, 0.01, 133.45, 2, math.random(8, 18))
  23. MovementLoopAddLocation(NPC, -184.97, 0.21, 136.61, 2, 0)
  24. MovementLoopAddLocation(NPC, -185.59, 0.38, 138.74, 2, math.random(8, 18))
  25. MovementLoopAddLocation(NPC, -182.82, 0.00, 136.15, 2, 0)
  26. end