aneedlefang427610.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427610.lua
  3. Script Purpose : Waypoint Path for aneedlefang427610.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 08:53:24
  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, -13.06, 17.11, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -23.21, -12.42, 8.56, 2, 0)
  19. MovementLoopAddLocation(NPC, -20.2, -11.79, 0.59, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -26.02, -11.47, 12.27, 2, 0)
  21. MovementLoopAddLocation(NPC, -30.2, -12.65, 19.52, 2, 0)
  22. MovementLoopAddLocation(NPC, -33.09, -13.07, 20.42, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -30.24, -11.95, 18.54, 2, 0)
  24. MovementLoopAddLocation(NPC, -25.39, -11.15, -1.32, 2, 0)
  25. MovementLoopAddLocation(NPC, -20.4, -12.03, -8.92, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -30.43, -12.12, 18.75, 2, 0)
  27. MovementLoopAddLocation(NPC, -32.71, -13.62, 27.52, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -33.61, -12, 23.24, 2, 0)
  29. MovementLoopAddLocation(NPC, -39.47, -11.18, 11.86, 2, 0)
  30. MovementLoopAddLocation(NPC, -42.91, -11.1, 7.2, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -25.01, -11.71, 17.15, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -23.36, -12.08, 9.75, 2, 0)
  33. MovementLoopAddLocation(NPC, -22.52, -12.02, 7.18, 2, 0)
  34. MovementLoopAddLocation(NPC, -21.86, -11.98, 4.01, 2, 0)
  35. MovementLoopAddLocation(NPC, -20.18, -11.66, 0.82, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -26.9, -11.56, 14.5, 2, 0)
  37. MovementLoopAddLocation(NPC, -29.28, -12.22, 17.64, 2, 0)
  38. MovementLoopAddLocation(NPC, -32.86, -12.97, 20.36, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, -29.36, -12.02, 17.45, 2, 0)
  40. MovementLoopAddLocation(NPC, -25.82, -11.14, 0.6, 2, 0)
  41. MovementLoopAddLocation(NPC, -20.19, -12.05, -9.19, 2, math.random(10, 20))
  42. MovementLoopAddLocation(NPC, -24, -12.04, 1.64, 2, 0)
  43. MovementLoopAddLocation(NPC, -31.38, -12.24, 20.79, 2, 0)
  44. MovementLoopAddLocation(NPC, -32.86, -13.66, 30.79, 2, math.random(10, 20))
  45. end