agrovedeer428055.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428055.lua
  3. Script Purpose : Waypoint Path for agrovedeer428055.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:19:56
  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, 163.54, -2.28, 193.2, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 160.07, -2.41, 184.38, 2, 0)
  19. MovementLoopAddLocation(NPC, 154.08, -2.8, 174.46, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 152.82, -3.4, 159.03, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 162.19, -3.6, 154.44, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 158.93, -3.04, 148.58, 2, 0)
  23. MovementLoopAddLocation(NPC, 156.06, -2.86, 140.68, 2, 0)
  24. MovementLoopAddLocation(NPC, 154.35, -3.23, 138.24, 2, 0)
  25. MovementLoopAddLocation(NPC, 154.06, -3.84, 133.7, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 137.74, -4, 145.42, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 153.45, -3.16, 138.69, 2, 0)
  28. MovementLoopAddLocation(NPC, 168.77, -3.68, 135.81, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 135.41, -3.54, 172.51, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 152.85, -3.54, 151.07, 2, 0)
  31. MovementLoopAddLocation(NPC, 156.55, -3.28, 149.67, 2, math.random(10, 24))
  32. MovementLoopAddLocation(NPC, 187.13, -4.07, 174.73, 2, math.random(10, 24))
  33. MovementLoopAddLocation(NPC, 170.1, -2.94, 185.53, 2, 0)
  34. end