aneedlefang427582.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427582.lua
  3. Script Purpose : Waypoint Path for aneedlefang427582.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:15:22
  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, 100.13, -12.76, -33.44, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 88.53, -11.23, -39.8, 2, 0)
  19. MovementLoopAddLocation(NPC, 76.7, -11.02, -46.44, 2, 0)
  20. MovementLoopAddLocation(NPC, 67.09, -12.52, -56.25, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 73.22, -11.23, -50.79, 2, 0)
  22. MovementLoopAddLocation(NPC, 77.58, -10.99, -47.76, 2, 0)
  23. MovementLoopAddLocation(NPC, 89.4, -11.08, -45.2, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 82.77, -11.9, -41.72, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 87.77, -12.13, -40.22, 2, 0)
  26. MovementLoopAddLocation(NPC, 97.33, -12.8, -35.85, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 88.56, -12.18, -26.28, 2, 0)
  28. MovementLoopAddLocation(NPC, 76.55, -11.81, -16.05, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 81.16, -11.97, -20.29, 2, 0)
  30. MovementLoopAddLocation(NPC, 87.08, -12.72, -23.11, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 95.8, -12.09, -30.31, 2, 0)
  32. end