ataintedgrovedeer433070.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedgrovedeer433070.lua
  3. Script Purpose : Waypoint Path for ataintedgrovedeer433070.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:20: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, 147.98, -3.63, 193.4, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 154.21, -3.13, 197.44, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 155.25, -3.03, 148.58, 2, 0)
  20. MovementLoopAddLocation(NPC, 157.19, -3.05, 139.37, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 158.5, -3.1, 148.86, 2, 0)
  22. MovementLoopAddLocation(NPC, 166.89, -3.22, 170.75, 2, 0)
  23. MovementLoopAddLocation(NPC, 170.26, -2.85, 188.11, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 158.79, -3.4, 162.72, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 157.27, -3.19, 166.52, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 154.18, -2.98, 189.33, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 158.96, -4.15, 209.59, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 159.92, -4.08, 208.15, 2, 0)
  29. MovementLoopAddLocation(NPC, 166.73, -3.54, 203.6, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 154.04, -3, 168.5, 2, math.random(10, 24))
  31. MovementLoopAddLocation(NPC, 164.79, -3.2, 170.59, 2, 0)
  32. MovementLoopAddLocation(NPC, 174.37, -3.63, 174.68, 2, math.random(10, 24))
  33. MovementLoopAddLocation(NPC, 178.18, -3.62, 193.26, 2, math.random(10, 24))
  34. end