aMorakmangler133770144.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770144.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770144.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, -27.59, 2.19, -140.46, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -22.04, 2.11, -143.94, 2, 0)
  20. MovementLoopAddLocation(NPC, -19.49, 2.22, -144.71, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -28.06, 2.34, -143.41, 2, 0)
  22. MovementLoopAddLocation(NPC, -37.26, 2.17, -138.49, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, -24.28, 2.12, -146.48, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -21.33, 3.38, -136.94, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, -19.72, 2.21, -144.92, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -24.11, 2.12, -143.75, 2, 0)
  27. MovementLoopAddLocation(NPC, -29.58, 2.14, -137.1, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, -27.21, 2.13, -132.82, 2, 0)
  29. MovementLoopAddLocation(NPC, -18.74, 2.1, -131.73, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, -32.08, 2.15, -154.42, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, -34.35, 1.96, -127.3, 2, math.random(14, 25))
  32. end