aMorakmangler429689.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429689.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429689.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, -1.48, 2, -188.63, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 2.82, 1.85, -206.48, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 1.47, 2.6, -178.85, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -0.57, 2.06, -187.79, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -0.19, 2.6, -183.08, 2, 0)
  23. MovementLoopAddLocation(NPC, -0.36, 2.6, -179.81, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -5.63, 2.62, -176.23, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 2.58, 1.87, -196.52, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 2.4, 2.03, -193.05, 2, 0)
  27. MovementLoopAddLocation(NPC, 2.94, 2.59, -179.33, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, 4.86, 2.02, -189.92, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, 11.33, 2.01, -206.44, 2, 0)
  30. MovementLoopAddLocation(NPC, 24.04, 1.95, -222.68, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, 11.46, 2.01, -207.2, 2, 0)
  32. MovementLoopAddLocation(NPC, 6.89, 2.04, -193.52, 2, math.random(14, 25))
  33. MovementLoopAddLocation(NPC, 4.25, 2.03, -191.23, 2, 0)
  34. end