akoi570671.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/akoi570671.lua
  3. Script Purpose : Waypoint Path for akoi570671.lua
  4. Script Author : Rylec
  5. Script Date : 02-21-2021 09:38:30
  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, 762.91, -26.95, -392.45, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 760.88, -26.74, -387.09, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 759.94, -25.93, -392.6, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 760.13, -26.31, -387.2, 2, 0)
  22. MovementLoopAddLocation(NPC, 761.84, -26.87, -383.69, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 761.23, -26.69, -388.79, 2, 0)
  24. MovementLoopAddLocation(NPC, 760.94, -26.02, -391.78, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 761.32, -26.51, -402.59, 2, 0)
  26. MovementLoopAddLocation(NPC, 761.99, -27, -405.78, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 761.92, -26, -400.67, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 759.99, -26.01, -394.7, 2, math.random(10, 20))
  29. end