akoi570668.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/akoi570668.lua
  3. Script Purpose : Waypoint Path for akoi570668.lua
  4. Script Author : Rylec
  5. Script Date : 02-21-2021 09:38:24
  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, 756.78, -26.97, -424.72, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 763.07, -26.79, -422.31, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 757.58, -26.89, -424.22, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 748.02, -26.94, -425.89, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 751.79, -26.98, -426.02, 2, 0)
  23. MovementLoopAddLocation(NPC, 757.03, -26.89, -425.67, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 749, -26, -424.64, 2, 0)
  25. MovementLoopAddLocation(NPC, 743.86, -25.99, -425, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 749.28, -26.68, -425.04, 2, 0)
  27. MovementLoopAddLocation(NPC, 751.58, -26.96, -425.24, 2, 0)
  28. end