Machica38

Mine

Nov 17th, 2013
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. print("Combien de block va traverse la turtle")
  2. blocs = read()
  3. blocs = tonumber(blocs)
  4. print("Le minage va commence")
  5.  
  6. repeat
  7. turtle.dig()
  8. turtle.forward()
  9. turtle.digUp()
  10. turtle.turnLeft()
  11. turtle.dig()
  12. turtle.up()
  13. turtle.dig()
  14. turtle.turnRight()
  15. turtle.turnRight()
  16. turtle.dig()
  17. turtle.down()
  18. turtle.dig()
  19. turtle.turnLeft()
  20. blocs = blocs - 1
  21. until blocs = 0
Advertisement
Add Comment
Please, Sign In to add comment