aneedlefang427569.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427569.lua
  3. Script Purpose : Waypoint Path for aneedlefang427569.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:19:25
  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, -27.71, -12.14, 0.75, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -10.26, -12.01, 8.3, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -11.5, -12.2, -4.37, 2, 0)
  20. MovementLoopAddLocation(NPC, -3.89, -12.06, -30.48, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -7.08, -12.22, -16.98, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -18.28, -11.64, -29, 2, 0)
  23. MovementLoopAddLocation(NPC, -34.19, -11.62, -40.79, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -40.44, -11.73, -32.78, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -25.63, -12.61, -38.42, 2, 0)
  26. MovementLoopAddLocation(NPC, -18.09, -12.37, -41.66, 2, 0)
  27. MovementLoopAddLocation(NPC, -8.48, -12.24, -43.37, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 1.55, -12.66, -47.44, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -5.86, -10.59, -36.56, 2, 0)
  30. MovementLoopAddLocation(NPC, -19.57, -11.04, -9.18, 2, 0)
  31. MovementLoopAddLocation(NPC, -28.13, -11.42, 8.54, 2, 0)
  32. MovementLoopAddLocation(NPC, -32.79, -11.62, 18.73, 2, 0)
  33. MovementLoopAddLocation(NPC, -37.99, -11.59, 25.36, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -42.2, -11.67, 33.94, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -43.29, -12.17, 18.43, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -34.86, -11.65, 10.23, 2, 0)
  37. end