aMorakmangler133770140.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770140.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770140.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, -62.98, 3.7, -118.81, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -71.59, 4.49, -120.28, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, -56.88, 2.65, -113.46, 2, 0)
  21. MovementLoopAddLocation(NPC, -51.89, 2.22, -114.48, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -49.26, 2.18, -117.21, 2, 0)
  23. MovementLoopAddLocation(NPC, -39.1, 2.17, -122.53, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -42.43, 2.09, -125.2, 2, 0)
  25. MovementLoopAddLocation(NPC, -49.08, 1.9, -123.58, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -53.3, 2.18, -120.35, 2, 0)
  27. MovementLoopAddLocation(NPC, -57.23, 2.8, -114.8, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, -68.16, 4.38, -96.01, 2, 0)
  29. MovementLoopAddLocation(NPC, -77.03, 4.36, -86.1, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, -80.06, 4.37, -94.89, 2, 0)
  31. MovementLoopAddLocation(NPC, -76.82, 4.31, -113.13, 2, math.random(14, 25))
  32. MovementLoopAddLocation(NPC, -67.41, 4.81, -110.34, 2, math.random(14, 25))
  33. MovementLoopAddLocation(NPC, -70.7, 4.57, -102.1, 2, 0)
  34. MovementLoopAddLocation(NPC, -73.25, 4.35, -90.1, 2, 0)
  35. MovementLoopAddLocation(NPC, -82.59, 4.59, -83.57, 2, math.random(14, 25))
  36. MovementLoopAddLocation(NPC, -85.22, 4.39, -87.77, 2, 0)
  37. MovementLoopAddLocation(NPC, -87.52, 4.4, -101.5, 2, math.random(14, 25))
  38. end