aMorakmangler429778.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429778.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429778.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, -88.21, 1.68, -194.29, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -91.73, 1.7, -208, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, -60.14, 1.91, -189.17, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -84.56, 1.86, -198.84, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -67.39, 2.34, -190.29, 2, 0)
  23. MovementLoopAddLocation(NPC, -62.92, 2.27, -187.11, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -70.35, 2.36, -193.3, 2, 0)
  25. MovementLoopAddLocation(NPC, -82.3, 1.86, -196.78, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -79.04, 1.84, -185.97, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, -69.46, 2.3, -185.76, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, -71.68, 2.31, -190.95, 2, 0)
  29. MovementLoopAddLocation(NPC, -72.1, 2.37, -197.96, 2, 0)
  30. MovementLoopAddLocation(NPC, -71.77, 2.31, -203.4, 2, math.random(14, 25))
  31. end