aneedlefang427608.lua 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427608.lua
  3. Script Purpose : Waypoint Path for aneedlefang427608.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:37:39
  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, 12.8, -12.12, -28.86, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 19.77, -12.07, -25.91, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 17.42, -12.11, -30.12, 2, 0)
  20. MovementLoopAddLocation(NPC, 14.59, -12.06, -34.33, 2, 0)
  21. MovementLoopAddLocation(NPC, 8.05, -12.02, -39.36, 2, 0)
  22. MovementLoopAddLocation(NPC, -3.16, -12.87, -45.96, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 4.43, -12.24, -43.2, 2, 0)
  24. MovementLoopAddLocation(NPC, 13.64, -12.03, -37.69, 2, 0)
  25. MovementLoopAddLocation(NPC, 20.91, -13.09, -31.81, 2, 0)
  26. MovementLoopAddLocation(NPC, 39.26, -12.59, -16.87, 2, 0)
  27. MovementLoopAddLocation(NPC, 41, -12.3, -14.1, 2, 0)
  28. MovementLoopAddLocation(NPC, 48.02, -12.07, -9.93, 2, 0)
  29. MovementLoopAddLocation(NPC, 54.68, -12.14, -8.66, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 57.89, -12.64, -9.27, 2, 0)
  31. MovementLoopAddLocation(NPC, 64.36, -14.81, -13.76, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 59.27, -13.15, -15.23, 2, 0)
  33. MovementLoopAddLocation(NPC, 48.28, -13.03, -17.73, 2, 0)
  34. MovementLoopAddLocation(NPC, 43.1, -13.69, -20.31, 2, 0)
  35. MovementLoopAddLocation(NPC, 35.26, -14.99, -22.48, 2, 0)
  36. MovementLoopAddLocation(NPC, 31.16, -15.52, -22.07, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, 37.78, -12.2, -30.27, 2, 0)
  38. MovementLoopAddLocation(NPC, 41.5, -11.89, -35.52, 2, 0)
  39. MovementLoopAddLocation(NPC, 47.64, -12.1, -47.55, 2, math.random(10, 20))
  40. MovementLoopAddLocation(NPC, 50.91, -10.3, -38.78, 2, 0)
  41. MovementLoopAddLocation(NPC, 52.2, -10.3, -28, 2, 0)
  42. MovementLoopAddLocation(NPC, 54.32, -10.3, -24.77, 2, 0)
  43. MovementLoopAddLocation(NPC, 59.36, -12.7, -16.8, 2, math.random(10, 20))
  44. MovementLoopAddLocation(NPC, 65.95, -12.1, -15.19, 2, 0)
  45. MovementLoopAddLocation(NPC, 75.5, -11.76, -15.36, 2, 0)
  46. MovementLoopAddLocation(NPC, 81.15, -12.02, -16.79, 2, math.random(10, 20))
  47. MovementLoopAddLocation(NPC, 72.45, -11.84, -15.74, 2, 0)
  48. MovementLoopAddLocation(NPC, 66.43, -11.76, -16.19, 2, 0)
  49. end