ataintedgrovedeer433058.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedgrovedeer433058.lua
  3. Script Purpose : Waypoint Path for ataintedgrovedeer433058.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:20:28
  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, 132.17, -3.51, 160.16, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 140.67, -3.65, 175.67, 2, 0)
  19. MovementLoopAddLocation(NPC, 144.49, -3.31, 180.71, 2, 0)
  20. MovementLoopAddLocation(NPC, 148.11, -3.24, 183.91, 2, 0)
  21. MovementLoopAddLocation(NPC, 151.75, -3.3, 193.12, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 178.98, -3.8, 178.65, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 165.57, -3.2, 170.79, 2, 0)
  24. MovementLoopAddLocation(NPC, 150.07, -3.18, 162.94, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 169.51, -2.71, 191.21, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 138.69, -3.51, 180.56, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 170.98, -3.13, 168.02, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 149.71, -3.12, 141.42, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 136.18, -3.38, 157.21, 2, 0)
  30. end