Elddarkestrel570545.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/Elddarkestrel570545.lua
  3. Script Purpose : Waypoint Path for Elddarkestrel570545.lua
  4. Script Author : Rylec
  5. Script Date : 09-23-2021 06:03:43
  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, 554.23, -16, -327.89, 2, math.random(10, 17))
  19. MovementLoopAddLocation(NPC, 548.68, -17, -325.99, 2, math.random(10, 17))
  20. MovementLoopAddLocation(NPC, 552.6, -16.5, -325.74, 2, math.random(10, 17))
  21. MovementLoopAddLocation(NPC, 558.19, -17.4, -327.16, 2, math.random(10, 17))
  22. MovementLoopAddLocation(NPC, 557.27, -17.74, -319.22, 2, math.random(10, 17))
  23. MovementLoopAddLocation(NPC, 551.12, -16.19, -328.25, 2, math.random(10, 17))
  24. MovementLoopAddLocation(NPC, 557.49, -18.04, -332.1, 2, math.random(10, 17))
  25. MovementLoopAddLocation(NPC, 553.88, -17.25, -328.55, 2, math.random(10, 17))
  26. MovementLoopAddLocation(NPC, 558.68, -17.92, -333.36, 2, math.random(10, 17))
  27. MovementLoopAddLocation(NPC, 557.26, -17.1, -324.92, 2, 0)
  28. MovementLoopAddLocation(NPC, 553.57, -16.9, -318.68, 2, math.random(10, 17))
  29. MovementLoopAddLocation(NPC, 549.26, -15.5, -324.89, 2, math.random(10, 17))
  30. end