aneedlefang427606.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427606.lua
  3. Script Purpose : Waypoint Path for aneedlefang427606.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:36:57
  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, 31.60, -12.38, -14.7, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 27.23, -12.51, -22.79, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 26.25, -12.87, -14.61, 2, 0)
  20. MovementLoopAddLocation(NPC, 23.98, -13.32, -8.57, 2, 0)
  21. MovementLoopAddLocation(NPC, 20.83, -13.68, -4.8, 2, 0)
  22. MovementLoopAddLocation(NPC, 16.47, -13.67, -4.02, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 15.22, -13.86, 4.37, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 22, -13.95, -4.27, 2, 0)
  25. MovementLoopAddLocation(NPC, 27.91, -14.09, -13.75, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 24.29, -12.63, -26.67, 2, 0)
  27. MovementLoopAddLocation(NPC, 22.06, -10.98, -47.3, 2, 0)
  28. MovementLoopAddLocation(NPC, 18.26, -12.12, -59, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 5.34, -11.94, -34.31, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 16.75, -11.81, -29.23, 2, 0)
  31. MovementLoopAddLocation(NPC, 33.19, -12.55, -13.21, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 33.82, -12.61, -3.41, 2, math.random(10, 20))
  33. end