aneedlefang427574.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427574.lua
  3. Script Purpose : Waypoint Path for aneedlefang427574.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:12:37
  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, 80.41, -12.05, -31.4, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 87.68, -12.88, -37.37, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 80.42, -12.06, -43.76, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 88.15, -12.15, -39.84, 2, 0)
  21. MovementLoopAddLocation(NPC, 99.73, -12.19, -31.36, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 97.14, -12.07, -31.43, 2, 0)
  23. MovementLoopAddLocation(NPC, 82.95, -12.08, -27.41, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 94.87, -12.94, -19.23, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 85.97, -12.12, -24.04, 2, 0)
  26. MovementLoopAddLocation(NPC, 82.88, -12, -25.42, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 75.42, -11.04, -40.06, 2, math.random(10, 20))
  28. end