Elddarkestrel570547.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/Elddarkestrel570547.lua
  3. Script Purpose : Waypoint Path for Elddarkestrel570547.lua
  4. Script Author : Rylec
  5. Script Date : 08-05-2021 12:20:15
  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 waypoints(NPC)
  15. MovementLoopAddLocation(NPC, 685.4, -17.3865, -309.02, 2, MakeRandomInt(10, 17))
  16. MovementLoopAddLocation(NPC, 683.12, -17.03, -306.35, 2, MakeRandomInt(10, 17))
  17. MovementLoopAddLocation(NPC, 673.83, -18.01, -308.62, 2, MakeRandomInt(10, 17))
  18. MovementLoopAddLocation(NPC, 677.35, -15.73, -317.05, 2, MakeRandomInt(10, 17))
  19. MovementLoopAddLocation(NPC, 674.85, -16.33, -312.11, 2, MakeRandomInt(10, 17))
  20. MovementLoopAddLocation(NPC, 679.14, -17.07, -305.21, 2, MakeRandomInt(10, 17))
  21. MovementLoopAddLocation(NPC, 683.56, -16.78, -307.31, 2, MakeRandomInt(10, 17))
  22. MovementLoopAddLocation(NPC, 676.91, -17.61, -306.32, 2, MakeRandomInt(10, 17))
  23. MovementLoopAddLocation(NPC, 683, -16.35, -315.1, 2, MakeRandomInt(10, 17))
  24. MovementLoopAddLocation(NPC, 672.63, -18.41, -304.35, 2, MakeRandomInt(10, 17))
  25. end
  26. function respawn(NPC)
  27. spawn(NPC)
  28. end