aMorakmangler429795.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429795.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429795.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, -84.81, 1.68, -213.27, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -74.04, 2.32, -193.77, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, -75.22, 2.12, -181.76, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -70.79, 2.3, -184.83, 2, 0)
  22. MovementLoopAddLocation(NPC, -61.28, 2.17, -187.95, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, -60.82, 2.25, -183.81, 2, 0)
  24. MovementLoopAddLocation(NPC, -62.53, 2.27, -179.99, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, -68.76, 2.17, -181.47, 2, 0)
  26. MovementLoopAddLocation(NPC, -89.05, 1.68, -196.94, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, -70.39, 2.12, -182.25, 2, 0)
  28. MovementLoopAddLocation(NPC, -61.62, 2.27, -178.52, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, -64.15, 2.28, -183.03, 2, 0)
  30. MovementLoopAddLocation(NPC, -67.89, 2.35, -190.92, 2, 0)
  31. MovementLoopAddLocation(NPC, -76.37, 2.33, -202.11, 2, math.random(14, 25))
  32. MovementLoopAddLocation(NPC, -74.81, 2.32, -192.78, 2, 0)
  33. MovementLoopAddLocation(NPC, -75.78, 2.09, -175.89, 2, math.random(14, 25))
  34. MovementLoopAddLocation(NPC, -71.79, 2.31, -200.1, 2, math.random(14, 25))
  35. MovementLoopAddLocation(NPC, -89.46, 1.69, -205.55, 2, math.random(14, 25))
  36. end