aneedlefang427631.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427631.lua
  3. Script Purpose : Waypoint Path for aneedlefang427631.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:21:52
  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, 6.08, -11.19, 24.49, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 10.15, -11.98, 31.39, 2, 0)
  19. MovementLoopAddLocation(NPC, 17.03, -12.04, 38.5, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 34.78, -11.67, 33.2, 2, 0)
  21. MovementLoopAddLocation(NPC, 48.4, -11.18, 28.45, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 44.82, -12.75, 19.32, 2, 0)
  23. MovementLoopAddLocation(NPC, 43.63, -13.1, 14.32, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 35.18, -12.48, 17.24, 2, 0)
  25. MovementLoopAddLocation(NPC, 28.98, -12.5, 20.82, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 32.19, -12.76, 25.68, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 23.19, -12.32, 16.97, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 17.34, -12.46, 21.03, 2, 0)
  29. end