aneedlefang427588.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427588.lua
  3. Script Purpose : Waypoint Path for aneedlefang427588.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:17:04
  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, 99.71, -11.08, -21.11, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 83.87, -12.86, -38.85, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 92.64, -12.75, -39.18, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 73.64, -12.13, -42.53, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 77.88, -12.07, -40.18, 2, 0)
  22. MovementLoopAddLocation(NPC, 86.83, -12.06, -33.12, 2, 0)
  23. MovementLoopAddLocation(NPC, 91.38, -12.2, -22.47, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 97.83, -12.12, -32.19, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 96, -12.71, -35.18, 2, 0)
  26. MovementLoopAddLocation(NPC, 95.45, -12.93, -39.37, 2, math.random(10, 20))
  27. end