areefturtle427022.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427022.lua
  3. Script Purpose : Waypoint Path for areefturtle427022.lua
  4. Script Author : Rylec
  5. Script Date : 11-08-2019 06:15:47
  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, -137.57, -11.53, 142.18, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -110.28, -11.7, 144.11, 2, 0)
  19. MovementLoopAddLocation(NPC, -103.36, -11.75, 145.81, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -114.95, -11.31, 174.14, 2, 0)
  21. MovementLoopAddLocation(NPC, -125.07, -12.34, 197.92, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -136.44, -12.84, 183.13, 2, 0)
  23. MovementLoopAddLocation(NPC, -140.48, -12.06, 179.75, 2, 0)
  24. MovementLoopAddLocation(NPC, -144.86, -12.33, 175.58, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -115.24, -13.44, 184.96, 2, 0)
  26. MovementLoopAddLocation(NPC, -113.89, -13.59, 186.77, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -110.39, -13.75, 186.79, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -124.84, -11.7, 156.97, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -119.19, -12.13, 150.99, 2, 0)
  30. MovementLoopAddLocation(NPC, -117.6, -11.73, 150.55, 2, 0)
  31. MovementLoopAddLocation(NPC, -113.77, -11.74, 149.43, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -120.17, -10.67, 147.91, 2, 0)
  33. end