atrashhopper393135.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/atrashhopper393135.lua
  3. Script Purpose : Waypoint Path for atrashhopper393135.lua
  4. Script Author : Rylec
  5. Script Date : 09-17-2019 05:52:12
  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, -175.51, 1.23, 32.54, 2, math.random(8, 18))
  18. MovementLoopAddLocation(NPC, -179.46, 1.22, 33.34, 2, 0)
  19. MovementLoopAddLocation(NPC, -179.46, 1.22, 33.38, 2, math.random(8, 18))
  20. MovementLoopAddLocation(NPC, -178.53, 1.24, 36.56, 2, 0)
  21. MovementLoopAddLocation(NPC, -178.61, 1.24, 36.67, 2, math.random(8, 18))
  22. MovementLoopAddLocation(NPC, -180.45, 1.22, 26.39, 2, math.random(8, 18))
  23. MovementLoopAddLocation(NPC, -179.85, 1.22, 27.95, 2, math.random(8, 18))
  24. MovementLoopAddLocation(NPC, -175.44, 1.22, 31.52, 2, math.random(8, 18))
  25. MovementLoopAddLocation(NPC, -181.40, 1.26, 28.46, 2, math.random(8, 18))
  26. MovementLoopAddLocation(NPC, -175.29, 1.22, 29.32, 2, math.random(8, 18))
  27. MovementLoopAddLocation(NPC, -177.57, 1.22, 25.36, 2, math.random(8, 18))
  28. MovementLoopAddLocation(NPC, -175.38, 1.22, 26.64, 2, 0)
  29. MovementLoopAddLocation(NPC, -175.44, 1.22, 26.80, 2, math.random(8, 18))
  30. MovementLoopAddLocation(NPC, -175.46, 1.22, 31.12, 2, 0)
  31. end