aMorakmangler133770145.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770145.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770145.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, -20.32, 2.18, -144.6, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -30.36, 2.43, -143.46, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, -26.21, 2.11, -149.64, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -32.18, 2.42, -148.22, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -20.82, 2.18, -145.17, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, -28.92, 2.27, -141.49, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -32.55, 2.15, -138.95, 2, 0)
  25. MovementLoopAddLocation(NPC, -36.22, 2.12, -135.61, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -25.71, 2.16, -143.09, 2, 0)
  27. end