Elddarkestrel570546.lua 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/Elddarkestrel570546.lua
  3. Script Purpose : Waypoint Path for Elddarkestrel570546.lua
  4. Script Author : Rylec
  5. Script Date : 09-04-2021 12:27:04
  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, 598.12, -13.5675, -394.69, 2, math.random(10, 17))
  19. MovementLoopAddLocation(NPC, 609.18, -12.5, -395.09, 2, math.random(10, 17))
  20. MovementLoopAddLocation(NPC, 596.44, -14.1, -390.02, 2, math.random(10, 17))
  21. MovementLoopAddLocation(NPC, 611.28, -13, -388.22, 2, math.random(10, 17))
  22. MovementLoopAddLocation(NPC, 601.51, -14.5, -390.65, 2, math.random(10, 17))
  23. MovementLoopAddLocation(NPC, 602.99, -14.37, -387.92, 2, math.random(10, 17))
  24. MovementLoopAddLocation(NPC, 598.08, -13.8, -394.44, 2, math.random(10, 17))
  25. MovementLoopAddLocation(NPC, 601.54, -14.79, -387.73, 2, math.random(10, 17))
  26. MovementLoopAddLocation(NPC, 603.34, -14.4, -386.56, 2, math.random(10, 17))
  27. end