Advertisement
Risk_exe

Untitled

Apr 19th, 2022
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. turtle.select(1);
  2. turtle.equipRight();
  3. turtle.placeDown();
  4.  
  5. local x = 0
  6. while turtle.getFuelLevel() < turtle.getFuelLimit() do
  7. turtle.forward();
  8. turtle.placeDown();
  9. turtle.refuel();
  10. x = x + 1;
  11. end
  12.  
  13. for i=1, x, 1 do
  14. turtle.back();
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement