akoi570676.lua 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/akoi570676.lua
  3. Script Purpose : Waypoint Path for akoi570676.lua
  4. Script Author : Rylec
  5. Script Date : 02-21-2021 09:38:41
  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.41, -26.96, -394.21, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 778.37, -27.01, -399.12, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 778.84, -27, -406.33, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 777.34, -27.19, -404.34, 2, 0)
  22. MovementLoopAddLocation(NPC, 776.42, -27.96, -402.03, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 776.33, -28.03, -399.73, 2, 0)
  24. MovementLoopAddLocation(NPC, 775.33, -26.91, -388.67, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 775.4, -26.95, -401.26, 2, math.random(10, 20))
  26. end