aMorakmangler429740.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429740.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429740.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, 21.69, 1.79, -226.26, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 14.87, 1.81, -222.49, 2, 0)
  20. MovementLoopAddLocation(NPC, 7.7, 1.84, -214.83, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 2.75, 1.85, -199.48, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -1.78, 1.87, -192.58, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 9.21, 1.83, -216.75, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 3.55, 1.85, -202.24, 2, 0)
  25. MovementLoopAddLocation(NPC, 0.58, 2.6, -183.15, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 1.43, 1.86, -195.52, 2, 0)
  27. MovementLoopAddLocation(NPC, 14.29, 1.89, -216.81, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, 11.12, 1.82, -214.96, 2, 0)
  29. MovementLoopAddLocation(NPC, 4.03, 1.85, -209.42, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, 6.94, 1.84, -213.73, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, 12.99, 1.88, -215.68, 2, 0)
  32. MovementLoopAddLocation(NPC, 20.15, 1.79, -223.26, 2, 0)
  33. end