Elddarkestrel570544.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/Elddarkestrel570544.lua
  3. Script Purpose : Waypoint Path for Elddarkestrel570544.lua
  4. Script Author : Rylec
  5. Script Date : 02-27-2021 01:05:05
  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, 711.23, -14, -404.76, 2, math.random(10, 17))
  19. MovementLoopAddLocation(NPC, 714.46, -13.4, -407.72, 2, math.random(10, 17))
  20. MovementLoopAddLocation(NPC, 721.19, -15.3, -403.62, 2, math.random(10, 17))
  21. MovementLoopAddLocation(NPC, 717.63, -14.8, -403.91, 2, 0)
  22. MovementLoopAddLocation(NPC, 716.09, -14.6, -402.55, 2, math.random(10, 17))
  23. MovementLoopAddLocation(NPC, 720.16, -14, -394.59, 2, math.random(10, 17))
  24. MovementLoopAddLocation(NPC, 719.09, -14.3, -405.85, 2, math.random(10, 17))
  25. MovementLoopAddLocation(NPC, 717.26, -13.8, -403.54, 2, math.random(10, 17))
  26. MovementLoopAddLocation(NPC, 722.84, -14.3, -400.24, 2, math.random(10, 17))
  27. MovementLoopAddLocation(NPC, 718.75, -14, -401.09, 2, math.random(10, 17))
  28. MovementLoopAddLocation(NPC, 711.26, -13, -402.84, 2, math.random(10, 17))
  29. MovementLoopAddLocation(NPC, 716.04, -13.3, -402.79, 2, 0)
  30. MovementLoopAddLocation(NPC, 718.75, -13.4, -405.42, 2, math.random(10, 17))
  31. MovementLoopAddLocation(NPC, 713.74, -13.87, -405.58, 2, 0)
  32. end