areefturtle427026.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427026.lua
  3. Script Purpose : Waypoint Path for areefturtle427026.lua
  4. Script Author : Rylec
  5. Script Date : 11-08-2019 06:18:05
  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, -139.41, -12.33, 205.31, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -137.66, -12.45, 209.32, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -137.76, -13.46, 212.79, 2, 0)
  20. MovementLoopAddLocation(NPC, -142.8, -13.93, 216.97, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -146.53, -13.63, 212.89, 2, 0)
  22. MovementLoopAddLocation(NPC, -152.38, -13.7, 208.94, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -146.71, -14.66, 205.34, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -128.94, -12.24, 181.34, 2, 0)
  25. MovementLoopAddLocation(NPC, -128.29, -12.39, 178.56, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -128.07, -12.69, 173.89, 2, 0)
  27. MovementLoopAddLocation(NPC, -124.75, -12.29, 162.18, 2, 0)
  28. MovementLoopAddLocation(NPC, -124.97, -11.74, 149.51, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -117.89, -12.08, 160.16, 2, 0)
  30. MovementLoopAddLocation(NPC, -105.36, -11.71, 171.96, 2, 0)
  31. MovementLoopAddLocation(NPC, -101.51, -11.78, 175.84, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -103.33, -12.29, 177.34, 2, 0)
  33. MovementLoopAddLocation(NPC, -117.73, -12.53, 179.26, 2, math.random(10, 20))
  34. end