aMorakmangler133770146.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770146.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770146.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, -42.31, 2.19, -141.48, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -30.35, 2.44, -145.23, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, -35.34, 2.16, -138.53, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -36.27, 1.97, -131.39, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -26.3, 2.13, -132.37, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, -20.41, 3.31, -137.62, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -21.93, 2.15, -145.37, 2, 0)
  25. MovementLoopAddLocation(NPC, -30.9, 1.96, -155.22, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -21, 2.15, -144.56, 2, 0)
  27. MovementLoopAddLocation(NPC, -10.46, 2.16, -134.8, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, -11.47, 2.07, -130.45, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, -29.43, 2.14, -133.44, 2, math.random(14, 25))
  30. end