aneedlefang4276021.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang4276021.lua
  3. Script Purpose : Waypoint Path for aneedlefang4276021.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:34: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, 31.61, -13.34, 2.93, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 27.21, -14.56, -24.07, 2, 0)
  19. MovementLoopAddLocation(NPC, 25.27, -14.9, -28.58, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 23.22, -11.37, -38.91, 2, 0)
  21. MovementLoopAddLocation(NPC, 16.65, -11.56, -47.47, 2, 0)
  22. MovementLoopAddLocation(NPC, 10.07, -12.09, -62.64, 2, 0)
  23. MovementLoopAddLocation(NPC, 9.85, -12.06, -65.78, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 3.19, -12.67, -59.37, 2, 0)
  25. MovementLoopAddLocation(NPC, 1.03, -12.84, -55.71, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 5.3, -11.96, -52.8, 2, 0)
  27. MovementLoopAddLocation(NPC, 15.72, -12.08, -43.37, 2, 0)
  28. MovementLoopAddLocation(NPC, 22.06, -13.05, -37.2, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 40.57, -13.02, -28.93, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 43.53, -12.83, -22.87, 2, 0)
  31. MovementLoopAddLocation(NPC, 46.24, -12.99, -11.5, 2, 0)
  32. MovementLoopAddLocation(NPC, 46.73, -14.02, -3.95, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 28.24, -13.1, -29, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 31.57, -14.37, -20.94, 2, math.random(10, 20))
  35. end