asewagerat392411.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/asewagerat392411.lua
  3. Script Purpose : Waypoint Path for asewagerat392411.lua
  4. Script Author : Rylec
  5. Script Date : 09-17-2019 05:10:29
  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, -180.49, 1.22, 25.47, 2, math.random(10, 18))
  18. MovementLoopAddLocation(NPC, -179.50, 1.22, 23.22, 2, math.random(10, 18))
  19. MovementLoopAddLocation(NPC, -177.49, 1.31, 35.78, 2, 0)
  20. MovementLoopAddLocation(NPC, -177.48, 1.31, 35.72, 2, math.random(10, 18))
  21. MovementLoopAddLocation(NPC, -175.31, 1.22, 28.71, 2, math.random(10, 18))
  22. MovementLoopAddLocation(NPC, -181.16, 1.24, 35.62, 2, math.random(10, 18))
  23. MovementLoopAddLocation(NPC, -181.29, 1.25, 22.76, 2, math.random(10, 18))
  24. MovementLoopAddLocation(NPC, -180.51, 1.22, 26.41, 2, math.random(10, 18))
  25. MovementLoopAddLocation(NPC, -175.53, 1.22, 27.42, 2, math.random(10, 18))
  26. MovementLoopAddLocation(NPC, -179.38, 1.22, 26.42, 2, math.random(10, 18))
  27. MovementLoopAddLocation(NPC, -175.46, 1.22, 29.50, 2, math.random(10, 18))
  28. end