aneedlefang427630.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427630.lua
  3. Script Purpose : Waypoint Path for aneedlefang427630.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:21:32
  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, 19.24, -11.84, 43.3, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 3.99, -12.1, 42.65, 2, 0)
  19. MovementLoopAddLocation(NPC, -6.29, -12.54, 41.48, 2, 0)
  20. MovementLoopAddLocation(NPC, -12.46, -13.03, 41.59, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 1.4, -12.68, 40.3, 2, 0)
  22. MovementLoopAddLocation(NPC, 14.67, -13.66, 37.82, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 13.32, -13.16, 20.28, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 4.59, -12.65, 42.07, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 7.89, -13.42, 41.96, 2, 0)
  26. MovementLoopAddLocation(NPC, 11.17, -13.47, 41.09, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 18.17, -12.4, 30.24, 2, math.random(10, 20))
  28. end