Elddarkestrel133772647.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/Elddarkestrel133772647.lua
  3. Script Purpose : Waypoint Path for Elddarkestrel133772647.lua
  4. Script Author : Rylec
  5. Script Date : 09-18-2021 11:38:24
  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, 528.23, -14, -388.58, 2, math.random(10, 17))
  19. MovementLoopAddLocation(NPC, 537.51, -13.7, -389.92, 2, math.random(10, 17))
  20. MovementLoopAddLocation(NPC, 531.91, -13, -388.17, 2, math.random(10, 17))
  21. MovementLoopAddLocation(NPC, 524.4, -12.3, -393.01, 2, math.random(10, 17))
  22. MovementLoopAddLocation(NPC, 526.27, -13.82, -382.4, 2, math.random(10, 17))
  23. MovementLoopAddLocation(NPC, 531.76, -14.43, -387.49, 2, math.random(10, 17))
  24. MovementLoopAddLocation(NPC, 541.3, -13.06, -392.12, 2, math.random(10, 17))
  25. MovementLoopAddLocation(NPC, 530.94, -14.26, -395.85, 2, math.random(10, 17))
  26. MovementLoopAddLocation(NPC, 533.34, -13.8, -387.73, 2, math.random(10, 17))
  27. MovementLoopAddLocation(NPC, 535.6, -13.45, -385.41, 2, math.random(10, 17))
  28. end