aMorakmangler133770043.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770043.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770043.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, -94.01, 4.36, -150.5, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -92.41, 4.37, -160.86, 2, 0)
  20. MovementLoopAddLocation(NPC, -84.67, 2.83, -172.13, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -87.37, 4.9, -162.6, 2, 0)
  22. MovementLoopAddLocation(NPC, -88.95, 4.5, -159.21, 2, 0)
  23. MovementLoopAddLocation(NPC, -88.27, 4.35, -154.03, 2, 0)
  24. MovementLoopAddLocation(NPC, -86.34, 4.35, -148.51, 2, 0)
  25. MovementLoopAddLocation(NPC, -88.86, 4.35, -144.43, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -92.2, 4.35, -148.23, 2, 0)
  27. MovementLoopAddLocation(NPC, -93.7, 4.37, -156.35, 2, 0)
  28. MovementLoopAddLocation(NPC, -95.99, 4.39, -160.12, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, -94.42, 4.38, -157.24, 2, 0)
  30. MovementLoopAddLocation(NPC, -93.13, 4.35, -151.24, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, -88.16, 4.36, -151.37, 2, 0)
  32. MovementLoopAddLocation(NPC, -82.47, 4.35, -145.8, 2, math.random(14, 25))
  33. MovementLoopAddLocation(NPC, -90.24, 4.35, -145.67, 2, math.random(14, 25))
  34. MovementLoopAddLocation(NPC, -92.32, 4.35, -148.02, 2, 0)
  35. end