agrovedeer428033.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agrovedeer428033.lua
  3. Script Purpose : Waypoint Path for agrovedeer428033.lua
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:16:49
  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, 80.31, -4.39, 226.65, 2, math.random(10, 24))
  18. MovementLoopAddLocation(NPC, 84.44, -4.55, 216.83, 2, math.random(10, 24))
  19. MovementLoopAddLocation(NPC, 89.36, -4.37, 217.82, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 66.88, -4, 220.8, 2, math.random(10, 24))
  21. MovementLoopAddLocation(NPC, 88.21, -4.37, 218.79, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 66.7, -4.17, 221.94, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 72.02, -4.51, 224.78, 2, 0)
  24. MovementLoopAddLocation(NPC, 75.85, -4.44, 227.77, 2, 0)
  25. MovementLoopAddLocation(NPC, 77.7, -4.33, 228.14, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 84.3, -4.4, 212.02, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 83.97, -4.55, 216.93, 2, 0)
  28. MovementLoopAddLocation(NPC, 83.76, -4.47, 224.08, 2, math.random(10, 24))
  29. end