akoi570681.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/akoi570681.lua
  3. Script Purpose : Waypoint Path for akoi570681.lua
  4. Script Author : Rylec
  5. Script Date : 02-21-2021 09:38:54
  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.07, -28.04, -381.8, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 788.24, -26.93, -386.33, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 789.21, -26.07, -399.15, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 789.35, -26.19, -390.04, 2, 0)
  22. MovementLoopAddLocation(NPC, 788.73, -26.99, -375.89, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 789.04, -27.05, -378.24, 2, 0)
  24. MovementLoopAddLocation(NPC, 790.67, -26.94, -382.08, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 790.18, -26.97, -375.04, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 791.27, -26.32, -386.14, 2, 0)
  27. MovementLoopAddLocation(NPC, 791.14, -25.95, -394.95, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 790.61, -26.82, -376.63, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 791.55, -26.9, -373.83, 2, math.random(10, 20))
  30. end