aMorakmangler133770049.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770049.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770049.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, -146.74, 3.86, -108.48, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -140.26, 4.39, -105.56, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, -147.69, 3.93, -110.44, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -137.85, 4.12, -108.94, 2, 0)
  22. MovementLoopAddLocation(NPC, -133.06, 3.7, -111.22, 2, 0)
  23. MovementLoopAddLocation(NPC, -125.77, 3.67, -111.03, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -137.61, 3.72, -114.28, 2, 0)
  25. MovementLoopAddLocation(NPC, -140.41, 3.73, -113.15, 2, 0)
  26. MovementLoopAddLocation(NPC, -147.92, 3.92, -107.05, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, -141.39, 3.73, -112.04, 2, 0)
  28. MovementLoopAddLocation(NPC, -136.04, 3.71, -117.9, 2, 0)
  29. MovementLoopAddLocation(NPC, -131.72, 3.7, -118.41, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, -134.72, 3.71, -118.71, 2, 0)
  31. MovementLoopAddLocation(NPC, -137.28, 3.72, -117.69, 2, 0)
  32. MovementLoopAddLocation(NPC, -142.43, 3.73, -111.67, 2, 0)
  33. end