areefturtle427017.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427017.lua
  3. Script Purpose : Waypoint Path for areefturtle427017.lua
  4. Script Author : Rylec
  5. Script Date : 11-03-2019 06:00:10
  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, -84.03, -12.71, 187.28, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -68.78, -11.72, 170.4, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -73.82, -11.77, 191.42, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -89.32, -11.96, 197.12, 2, 0)
  21. MovementLoopAddLocation(NPC, -113.27, -12.29, 199.91, 2, 0)
  22. MovementLoopAddLocation(NPC, -124.61, -13.25, 209.75, 2, 0)
  23. MovementLoopAddLocation(NPC, -127.35, -13.47, 212.52, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -104.34, -13.47, 212.56, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -111.98, -14.72, 246.36, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -104.29, -13.41, 214.7, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -99.84, -13.35, 203.63, 2, 0)
  28. MovementLoopAddLocation(NPC, -95.79, -12.64, 199.82, 2, 0)
  29. MovementLoopAddLocation(NPC, -91.54, -12.38, 196.4, 2, 0)
  30. MovementLoopAddLocation(NPC, -86.72, -12.69, 190.72, 2, 0)
  31. end