aMorakmangler429702.lua 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429702.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429702.lua
  4. Script Author : Rylec
  5. Script Date : 07-28-2020 10:33:39
  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, 6.86, 1.84, -211.02, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -3.03, 2.5, -181.58, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, -0.46, 2.56, -184.99, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -1, 1.99, -190.9, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -0.52, 2.6, -182.73, 2, 0)
  23. MovementLoopAddLocation(NPC, -4.18, 2.62, -175.2, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 4.92, 1.85, -212.33, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 9.03, 2.01, -206.22, 2, math.random(14, 25))
  26. end