aneedlefang427642.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427642.lua
  3. Script Purpose : Waypoint Path for aneedlefang427642.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:51:36
  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, 29.09, -11.85, 71.41, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 26.13, -11.52, 65.15, 2, 0)
  19. MovementLoopAddLocation(NPC, 23.06, -11.61, 58.37, 2, 0)
  20. MovementLoopAddLocation(NPC, 5.49, -13.25, 39.27, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 12.27, -13.92, 37, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 21.43, -12.75, 39.94, 2, 0)
  23. MovementLoopAddLocation(NPC, 38.99, -12.54, 49.62, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 28.21, -12.2, 54.2, 2, 0)
  25. MovementLoopAddLocation(NPC, 19.37, -13.13, 58.73, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 18.4, -13.06, 45.82, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 26.66, -13.93, 33.71, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 28.63, -12.32, 44.64, 2, 0)
  29. MovementLoopAddLocation(NPC, 31.58, -11.82, 56.15, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 23.82, -12.16, 43.24, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 25.07, -11.85, 54.95, 2, 0)
  32. end