aneedlefang427619.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427619.lua
  3. Script Purpose : Waypoint Path for aneedlefang427619.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 10:24:41
  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, 20.03, -12.5, 21.23, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 13.62, -12.77, 29.54, 2, 0)
  19. MovementLoopAddLocation(NPC, 5.64, -12.48, 41.01, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 15.29, -12.36, 32.76, 2, 0)
  21. MovementLoopAddLocation(NPC, 48.72, -11.69, 13, 2, 0)
  22. MovementLoopAddLocation(NPC, 59.44, -12.51, 5.89, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 64.31, -11.98, 1.58, 2, 0)
  24. MovementLoopAddLocation(NPC, 76.41, -12.01, -0.58, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 80.14, -11.96, -4, 2, 0)
  26. MovementLoopAddLocation(NPC, 93.27, -12.68, -13.13, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 83.11, -12.62, 3.47, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 83.8, -12.56, 6.65, 2, 0)
  29. MovementLoopAddLocation(NPC, 90.21, -12.71, 18.15, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 83.6, -12.72, 24.38, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 80.25, -12.84, 26.84, 2, 0)
  32. MovementLoopAddLocation(NPC, 75.8, -12.8, 32.1, 2, 0)
  33. MovementLoopAddLocation(NPC, 72.96, -12.98, 37.12, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 62.64, -11.93, 36.99, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, 70.7, -10.49, 43.66, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, 58.51, -10.3, 37.53, 2, 0)
  37. MovementLoopAddLocation(NPC, 47.19, -10.3, 32.18, 2, 0)
  38. end