aneedlefang427636.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427636.lua
  3. Script Purpose : Waypoint Path for aneedlefang427636.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:47:56
  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, 28.8, -12.33, 30.53, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 15.33, -12.31, 25.95, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 9.77, -13.01, 33.49, 2, 0)
  20. MovementLoopAddLocation(NPC, -1.45, -11.82, 61, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 0.22, -12.55, 54.54, 2, 0)
  22. MovementLoopAddLocation(NPC, 0.36, -13.01, 48.18, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -12.88, -13.49, 28.22, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -5.04, -12.78, 44.8, 2, 0)
  25. MovementLoopAddLocation(NPC, -0.46, -12.78, 56.77, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -1.8, -12.84, 49.47, 2, 0)
  27. MovementLoopAddLocation(NPC, -5.77, -12.86, 40.93, 2, 0)
  28. MovementLoopAddLocation(NPC, -9.89, -14.01, 35.61, 2, 0)
  29. MovementLoopAddLocation(NPC, -13.98, -13.81, 32.75, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -1.9, -13.2, 35.68, 2, 0)
  31. MovementLoopAddLocation(NPC, 20.97, -12.56, 39.4, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 15.09, -12.31, 35.92, 2, 0)
  33. MovementLoopAddLocation(NPC, 5.15, -12.53, 31.44, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 1.55, -11.22, 65.19, 2, math.random(10, 20))
  35. end