aneedlefang427639.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427639.lua
  3. Script Purpose : Waypoint Path for needle_020_06.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 09:27: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, -77.41, -11.19, 17.16, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -57.91, -10.3, 6.61, 2, 0)
  19. MovementLoopAddLocation(NPC, -38.73, -10.36, -9.58, 2, 0)
  20. MovementLoopAddLocation(NPC, -22.79, -11.78, -21.79, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -33.48, -11.36, -19.35, 2, 0)
  22. MovementLoopAddLocation(NPC, -43.47, -10.44, -11.02, 2, 0)
  23. MovementLoopAddLocation(NPC, -54.01, -10.46, -3.13, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -52.61, -11.07, -11.95, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -44.15, -10.74, -14.15, 2, 0)
  26. MovementLoopAddLocation(NPC, -12.85, -11.69, -24.94, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -12.97, -11.96, -18.44, 2, 0)
  28. MovementLoopAddLocation(NPC, -8.63, -12.7, -9.56, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -8.09, -11.69, -19.11, 2, 0)
  30. MovementLoopAddLocation(NPC, -11.95, -11.19, -31.94, 2, 0)
  31. MovementLoopAddLocation(NPC, -14.35, -11.5, -43.51, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -13.98, -11.07, -46.91, 2, 0)
  33. MovementLoopAddLocation(NPC, -12.85, -11.11, -54.78, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -19.65, -10.67, -44.24, 2, 0)
  35. MovementLoopAddLocation(NPC, -35.18, -10.29, -28.97, 2, 0)
  36. MovementLoopAddLocation(NPC, -43.61, -10.28, -22.96, 2, 0)
  37. MovementLoopAddLocation(NPC, -70.29, -10.3, 6.42, 2, 0)
  38. end