areefturtle427246.lua 995 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427246.lua
  3. Script Purpose : Waypoint Path for turtle004_03.lua
  4. Script Author : Rylec
  5. Script Date : 10-22-2019 09:52:12
  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, 17.05, -12.56, 254.34, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 30.3, -11.8, 260.15, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 23.77, -12.27, 259.83, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 11.74, -12.09, 263.17, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 9.65, -12.13, 261.75, 2, 0)
  22. MovementLoopAddLocation(NPC, 11.51, -11.5, 257, 2, 0)
  23. MovementLoopAddLocation(NPC, 24.74, -11.68, 259.72, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 1.59, -14.46, 280.15, 2, math.random(10, 20))
  25. end