aneedlefang427566.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427566.lua
  3. Script Purpose : Waypoint Path for aneedlefang427566.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:18:18
  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, -25.26, -11.65, -44.15, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -30.12, -10.52, -49.7, 2, 0)
  19. MovementLoopAddLocation(NPC, -33.39, -10.35, -55.25, 2, 0)
  20. MovementLoopAddLocation(NPC, -41.79, -10.23, -67.61, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -37.64, -11.99, -79.13, 2, 0)
  22. MovementLoopAddLocation(NPC, -32.59, -12.07, -89.42, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -43.45, -12.13, -69.73, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -43.05, -11.45, -58.97, 2, 0)
  25. MovementLoopAddLocation(NPC, -40, -11.3, -50.33, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -30.6, -10.3, -54.44, 2, 0)
  27. MovementLoopAddLocation(NPC, -14.01, -10.3, -61.83, 2, 0)
  28. MovementLoopAddLocation(NPC, -5.38, -11.17, -70.04, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -16.45, -11.35, -50.54, 2, 0)
  30. MovementLoopAddLocation(NPC, -22.88, -12.65, -44.07, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -35.76, -11.99, -39.89, 2, math.random(10, 20))
  32. end