aMorakmangler133770045.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770045.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770045.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, -107.75, 4.48, -119.41, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -107.61, 4.52, -125.83, 2, 0)
  20. MovementLoopAddLocation(NPC, -106.77, 4.53, -128.89, 2, 0)
  21. MovementLoopAddLocation(NPC, -107.88, 4.48, -134.28, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -109.71, 4.49, -137.82, 2, 0)
  23. MovementLoopAddLocation(NPC, -114.73, 4.32, -160.29, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -107.03, 4.54, -129.43, 2, 0)
  25. MovementLoopAddLocation(NPC, -108.74, 4.49, -123.12, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -105.98, 4.5, -129.79, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, -105.65, 4.37, -135.47, 2, 0)
  28. MovementLoopAddLocation(NPC, -109.56, 4.49, -151.21, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, -112.9, 4.51, -151.26, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, -107.16, 4.55, -129.36, 2, 0)
  31. MovementLoopAddLocation(NPC, -107.64, 4.55, -126.92, 2, math.random(14, 25))
  32. end