aneedlefang427592.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427592.lua
  3. Script Purpose : Waypoint Path for aneedlefang427592.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:18:08
  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, 49.09, -12.07, -76.44, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 70.1, -11.98, -70.43, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 73.27, -11.75, -53, 2, 0)
  20. MovementLoopAddLocation(NPC, 77.16, -11.98, -44.09, 2, 0)
  21. MovementLoopAddLocation(NPC, 79.47, -12.72, -36.69, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 75.27, -11.69, -46.14, 2, 0)
  23. MovementLoopAddLocation(NPC, 71.96, -11.63, -51.73, 2, 0)
  24. MovementLoopAddLocation(NPC, 69.51, -11.75, -57.56, 2, 0)
  25. MovementLoopAddLocation(NPC, 67.6, -11.97, -66.4, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 56.56, -11.03, -81.47, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 62.86, -12.12, -72.93, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 56.14, -11.15, -83.05, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 60.29, -10.41, -80.64, 2, 0)
  30. MovementLoopAddLocation(NPC, 68.18, -10.52, -74.07, 2, 0)
  31. MovementLoopAddLocation(NPC, 76.8, -10.32, -62.06, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 73.84, -11.75, -64.88, 2, 0)
  33. MovementLoopAddLocation(NPC, 66.27, -12.18, -68.83, 2, math.random(10, 20))
  34. end