akoi570680.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/akoi570680.lua
  3. Script Purpose : Waypoint Path for akoi570680.lua
  4. Script Author : Rylec
  5. Script Date : 02-21-2021 09:38:50
  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, 789.16, -27.03, -394.03, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 790.94, -27.02, -387.33, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 791.55, -27.38, -384.82, 2, 0)
  21. MovementLoopAddLocation(NPC, 790.86, -27.12, -378.04, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 790.55, -26.66, -386.65, 2, 0)
  23. MovementLoopAddLocation(NPC, 789.35, -26.42, -395.03, 2, 0)
  24. MovementLoopAddLocation(NPC, 787.26, -26.27, -399.16, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 789.48, -26.93, -392.36, 2, 0)
  26. MovementLoopAddLocation(NPC, 791.08, -26.98, -387.29, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 790.91, -26.64, -391.15, 2, 0)
  28. MovementLoopAddLocation(NPC, 790.35, -26.07, -393.26, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 788.19, -25.95, -396.57, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 790.54, -26.45, -379.57, 2, 0)
  31. MovementLoopAddLocation(NPC, 789.37, -27.07, -375.24, 2, math.random(10, 20))
  32. end