areefturtle427015.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427015.lua
  3. Script Purpose : Waypoint Path for areefturtle427015.lua
  4. Script Author : Rylec
  5. Script Date : 11-03-2019 05:59:44
  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, -53.29, -11.78, 193.66, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -48.49, -11.93, 191.32, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -66.21, -11.74, 185.15, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -88.35, -13.27, 206.6, 2, 0)
  21. MovementLoopAddLocation(NPC, -91.58, -13.44, 210.49, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -96.41, -13.33, 216.8, 2, 0)
  23. MovementLoopAddLocation(NPC, -106.8, -13.44, 241.98, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -100.89, -14.22, 229.99, 2, 0)
  25. MovementLoopAddLocation(NPC, -95.96, -14.8, 220.14, 2, 0)
  26. MovementLoopAddLocation(NPC, -91.58, -14.74, 218.94, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -91.01, -14.78, 210.1, 2, 0)
  28. MovementLoopAddLocation(NPC, -89.63, -14.07, 208.27, 2, 0)
  29. MovementLoopAddLocation(NPC, -85.32, -12.43, 200.7, 2, 0)
  30. MovementLoopAddLocation(NPC, -76.23, -11.57, 191.61, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -73.02, -12.19, 194.15, 2, 0)
  32. MovementLoopAddLocation(NPC, -61.55, -11.84, 193.48, 2, 0)
  33. end