aneedlefang427632.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427632.lua
  3. Script Purpose : Waypoint Path for aneedlefang427632.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:22:14
  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, -8.19, -14, 30.82, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -2.6, -13.78, 29.38, 2, 0)
  19. MovementLoopAddLocation(NPC, 10.73, -14.15, 22.73, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 5.06, -11.95, 36.33, 2, 0)
  21. MovementLoopAddLocation(NPC, -0.05, -11.58, 47.66, 2, 0)
  22. MovementLoopAddLocation(NPC, -1.89, -11.2, 58.5, 2, 0)
  23. MovementLoopAddLocation(NPC, 1.2, -11.14, 63.4, 2, 0)
  24. MovementLoopAddLocation(NPC, 46.55, -10.48, 86.25, 2, 0)
  25. MovementLoopAddLocation(NPC, 60.77, -11.22, 90.11, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 66.08, -11.01, 82.68, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 48.43, -10.67, 78.55, 2, 0)
  28. MovementLoopAddLocation(NPC, 26.99, -11.69, 69.49, 2, 0)
  29. MovementLoopAddLocation(NPC, 18.26, -12.2, 67.15, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 33.06, -11.94, 55.35, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 37.09, -12.82, 31.14, 2, 0)
  32. MovementLoopAddLocation(NPC, 36.9, -13.39, 21.53, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 16.08, -14.03, 43.71, 2, math.random(10, 20))
  34. end