atrashhopper393130.lua 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/atrashhopper393130.lua
  3. Script Purpose : Waypoint Path for atrashhopper393130.lua
  4. Script Author : Rylec
  5. Script Date : 10-17-2019 04:35:24
  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.33, 0.02, 109.45, 2, math.random(8, 18))
  18. MovementLoopAddLocation(NPC, -181.99, 0.00, 111.13, 2, math.random(8, 18))
  19. MovementLoopAddLocation(NPC, -181.24, 0.02, 113.34, 2, 0)
  20. MovementLoopAddLocation(NPC, -181.91, 0.00, 115.69, 2, 0)
  21. MovementLoopAddLocation(NPC, -181.43, 0.25, 117.17, 2, math.random(8, 18))
  22. MovementLoopAddLocation(NPC, -181.48, 0.00, 109.51, 2, math.random(8, 18))
  23. MovementLoopAddLocation(NPC, -182.66, 0.00, 114.52, 2, 0)
  24. MovementLoopAddLocation(NPC, -183.60, 0.25, 117.11, 2, math.random(8, 18))
  25. MovementLoopAddLocation(NPC, -182.22, 0.00, 114.69, 2, 0)
  26. MovementLoopAddLocation(NPC, -182.05, 0.00, 111.38, 2, 0)
  27. end