aMorakmangler133770046.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770046.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770046.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, -111.65, 4.4, -153.81, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -111.87, 4.5, -148.03, 2, 0)
  20. MovementLoopAddLocation(NPC, -110.01, 4.49, -134.95, 2, 0)
  21. MovementLoopAddLocation(NPC, -110.89, 4.59, -126.32, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -109.75, 4.52, -131.92, 2, 0)
  23. MovementLoopAddLocation(NPC, -110.63, 4.5, -142.26, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -109.59, 4.49, -137.64, 2, 0)
  25. MovementLoopAddLocation(NPC, -103.75, 4.41, -130.26, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -105.75, 4.28, -138.2, 2, 0)
  27. MovementLoopAddLocation(NPC, -111.53, 4.5, -147.41, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, -109.92, 4.5, -133.48, 2, 0)
  29. MovementLoopAddLocation(NPC, -111.04, 4.53, -124.65, 2, 0)
  30. MovementLoopAddLocation(NPC, -110.42, 4.21, -115.16, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, -109.83, 4.49, -137.87, 2, math.random(14, 25))
  32. MovementLoopAddLocation(NPC, -112.82, 4.5, -151.32, 2, math.random(14, 25))
  33. end