aMorakmangler429709.lua 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429709.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429709.lua
  4. Script Author : Rylec
  5. Script Date : 07-28-2020 10:33:33
  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, 5.84, 2.57, -181.59, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 4.73, 2.03, -186.39, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 6.13, 2.02, -193.86, 2, 0)
  21. MovementLoopAddLocation(NPC, 4.75, 1.85, -207.97, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 9.39, 1.89, -211.09, 2, 0)
  23. MovementLoopAddLocation(NPC, 15.36, 1.83, -218.02, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 12.35, 1.82, -217.97, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 3.58, 2.33, -185.04, 2, math.random(14, 25))
  26. end