akoi570677.lua 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/akoi570677.lua
  3. Script Purpose : Waypoint Path for akoi570677.lua
  4. Script Author : Rylec
  5. Script Date : 02-21-2021 09:38:43
  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.45, -26.94, -402.22, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 775.63, -26.97, -406.13, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 776.56, -27, -387.42, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 781.21, -26.94, -393.14, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 775.7, -27.01, -393.02, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 777.17, -26.95, -382.81, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 776.97, -26.91, -390.53, 2, 0)
  25. MovementLoopAddLocation(NPC, 777.32, -26.96, -402.48, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 776.8, -27.04, -388.85, 2, math.random(10, 20))
  27. end