aMorakmangler429820.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429820.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429820.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, -92.87, 4.37, -161.64, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -94.03, 4.37, -155.53, 2, 0)
  20. MovementLoopAddLocation(NPC, -98.57, 4.4, -153.04, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -92.46, 4.37, -156.56, 2, 0)
  22. MovementLoopAddLocation(NPC, -87.75, 4.78, -161.38, 2, 0)
  23. MovementLoopAddLocation(NPC, -83.35, 5.27, -160.5, 2, 0)
  24. MovementLoopAddLocation(NPC, -82.59, 4.5, -155.81, 2, 0)
  25. MovementLoopAddLocation(NPC, -90.86, 4.36, -150.81, 2, 0)
  26. MovementLoopAddLocation(NPC, -93.24, 4.35, -146.8, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, -90.14, 4.35, -145.5, 2, 0)
  28. MovementLoopAddLocation(NPC, -87.05, 4.35, -146.65, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, -83.81, 4.35, -149.42, 2, 0)
  30. MovementLoopAddLocation(NPC, -81.67, 4.35, -152.68, 2, 0)
  31. MovementLoopAddLocation(NPC, -82.33, 2.79, -172.26, 2, math.random(14, 25))
  32. end