aneedlefang427605.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427605.lua
  3. Script Purpose : Waypoint Path for aneedlefang427605.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:35:48
  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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 28.62, -13.14, -1.04, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 23.8, -13.7, -5.17, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 40.1, -12.98, 0.39, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 43.85, -12.27, -5.39, 2, 0)
  21. MovementLoopAddLocation(NPC, 49.3, -12.21, -11.56, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 37.2, -12.12, -9.82, 2, 0)
  23. MovementLoopAddLocation(NPC, 25.74, -13.08, -13.29, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 61.78, -13.05, -9.19, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 55.18, -12.13, -14.33, 2, 0)
  26. MovementLoopAddLocation(NPC, 48.1, -12.58, -17.54, 2, 0)
  27. MovementLoopAddLocation(NPC, 42.61, -13.54, -24.96, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 46.67, -12.89, -22.16, 2, 0)
  29. MovementLoopAddLocation(NPC, 53.81, -12.49, -20.19, 2, 0)
  30. MovementLoopAddLocation(NPC, 70.38, -11.96, -16.84, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 56.24, -12.18, -11.14, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 33.75, -12.55, -2.77, 2, 0)
  33. MovementLoopAddLocation(NPC, 25.07, -13.21, -0.75, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 16.86, -12.78, 5.31, 2, math.random(10, 20))
  35. end