aMorakmangler429803.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429803.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429803.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, -87.72, 4.79, -161.81, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -91.67, 4.37, -157.5, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, -86.61, 5.07, -162.13, 2, 0)
  21. MovementLoopAddLocation(NPC, -83.51, 5.31, -162.23, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -86.71, 5.04, -161.85, 2, 0)
  23. MovementLoopAddLocation(NPC, -91.75, 4.37, -158.68, 2, 0)
  24. MovementLoopAddLocation(NPC, -94.73, 4.37, -152.94, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, -90.48, 4.36, -151.27, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -87.98, 4.35, -152.65, 2, 0)
  27. MovementLoopAddLocation(NPC, -86.8, 4.35, -153.92, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, -91.77, 4.37, -160.45, 2, 0)
  29. MovementLoopAddLocation(NPC, -97.5, 4.39, -162.82, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, -90.42, 4.37, -158.98, 2, 0)
  31. end