areefturtle427131.lua 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427131.lua
  3. Script Purpose : Waypoint Path for areefturtle427131.lua
  4. Script Author : Rylec
  5. Script Date : 11-08-2019 06:08:04
  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, -103.58, -11.79, 130.97, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -111.97, -11.98, 128.04, 2, 0)
  19. MovementLoopAddLocation(NPC, -121.12, -10.53, 108.96, 2, 0)
  20. MovementLoopAddLocation(NPC, -135.73, -11.59, 108.77, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -124.92, -10.55, 114.75, 2, 0)
  22. MovementLoopAddLocation(NPC, -110.9, -10.62, 115.85, 2, 0)
  23. MovementLoopAddLocation(NPC, -102.25, -11.91, 119.5, 2, 0)
  24. MovementLoopAddLocation(NPC, -97.49, -11.81, 122.79, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -90.36, -11.37, 127.63, 2, 0)
  26. MovementLoopAddLocation(NPC, -83.45, -11.7, 134.77, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -108.38, -11.26, 156.12, 2, 0)
  28. MovementLoopAddLocation(NPC, -115.31, -11.58, 164.33, 2, 0)
  29. MovementLoopAddLocation(NPC, -120.31, -13.2, 172.57, 2, 0)
  30. MovementLoopAddLocation(NPC, -121.18, -13.5, 174.81, 2, 0)
  31. MovementLoopAddLocation(NPC, -125.97, -14.7, 181.77, 2, 0)
  32. MovementLoopAddLocation(NPC, -125.57, -14.82, 187.35, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, -116.18, -12.82, 179.09, 2, 0)
  34. MovementLoopAddLocation(NPC, -112.34, -12.21, 177.15, 2, 0)
  35. MovementLoopAddLocation(NPC, -94.24, -11.74, 168.08, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -92.74, -11.69, 138.61, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, -116.03, -11.78, 153.38, 2, math.random(10, 20))
  38. MovementLoopAddLocation(NPC, -112.17, -11.85, 164.56, 2, math.random(10, 20))
  39. end