aMorakmangler429725.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429725.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429725.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, 4.77, 1.96, -199.24, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 6.08, 2.02, -193.72, 2, 0)
  20. MovementLoopAddLocation(NPC, 4.68, 2.03, -188.87, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 6.04, 2.02, -193.95, 2, 0)
  22. MovementLoopAddLocation(NPC, 4.88, 1.84, -209.51, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 10.73, 2.01, -209.29, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 4.6, 2.1, -185.98, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, -8.26, 2.48, -176.1, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 5.55, 1.84, -209.38, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 11.19, 1.82, -215.03, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, -0.61, 1.91, -189.07, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, -8.09, 2.44, -177.37, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, -4.43, 2.62, -176.39, 2, math.random(14, 25))
  31. end