akoi570683.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/akoi570683.lua
  3. Script Purpose : Waypoint Path for akoi570683.lua
  4. Script Author : Rylec
  5. Script Date : 02-21-2021 09:38:58
  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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 779.51, -26.07, -358.9, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 776.48, -25.91, -358.34, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 781.17, -26.01, -358.64, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 783.33, -25.97, -361.52, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 775.69, -25.92, -357.64, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 783.45, -26.01, -358.65, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 777.98, -26.03, -358.33, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 775.03, -26.14, -356.98, 2, 0)
  26. MovementLoopAddLocation(NPC, 769.5, -25.97, -353.88, 2, math.random(10, 20))
  27. end