akoi570684.lua 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/akoi570684.lua
  3. Script Purpose : Waypoint Path for akoi570684.lua
  4. Script Author : Rylec
  5. Script Date : 02-21-2021 09:39:00
  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, 773.79, -26.07, -355.93, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 777.15, -26.18, -355.72, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 772.65, -26.02, -358.17, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 785.42, -26.29, -360.58, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 777.96, -26.14, -358.57, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 774.56, -26.08, -354.59, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 768.44, -26.05, -353.53, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 783.66, -25.96, -359.34, 2, math.random(10, 20))
  26. end