aMorakmangler133770143.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770143.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770143.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, -9.99, 2.07, -131.49, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -16.49, 2.09, -134.03, 2, 0)
  20. MovementLoopAddLocation(NPC, -28.06, 2.27, -141.45, 2, 0)
  21. MovementLoopAddLocation(NPC, -35.98, 2.17, -141.6, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -26.93, 2.08, -151.65, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, -32.23, 2.15, -133.18, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -39.56, 2.01, -137.61, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, -14.45, 1.89, -127.28, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -13.31, 2.08, -135.14, 2, math.random(14, 25))
  27. end