akoi570682.lua 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/akoi570682.lua
  3. Script Purpose : Waypoint Path for akoi570682.lua
  4. Script Author : Rylec
  5. Script Date : 02-21-2021 09:38:56
  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, 782.74, -26, -359.96, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 775.47, -25.91, -356.82, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 774.48, -26.03, -355.76, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 769.09, -26.03, -352.15, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 782.66, -26.04, -359.97, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 779.59, -25.98, -359.95, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 776.75, -26.01, -356.95, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 782.68, -25.94, -359.4, 2, math.random(10, 20))
  26. end