Advertisement
Guest User

lol

a guest
Feb 4th, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.96 KB | None | 0 0
  1. hauteur=0
  2. function remonte ()
  3.  hauto=(hauteur*hauteur)
  4.  hauto1=math.sqrt(hauto)
  5.    for i=1,hauto1 do
  6.     turtle.up()
  7.     turtle.placeDown(0)
  8.   end
  9. end
  10. function checkDown()
  11.   succes,rim=turtle.inspectDown()
  12.   ram=rim.name
  13.    print(ram)
  14.      if ram=="minecraft:bedrock"then
  15.         print(hauto)
  16.         remonte ()
  17.         turtle.forward()
  18.         turtle.forward()
  19.         turtle.forward()
  20.     end
  21.  end
  22. function desc ()
  23.   turtle.digDown()
  24.   turtle.down()
  25.   hauteur=hauteur-1
  26.  end
  27. function turn ()
  28.   turtle.turnLeft()
  29. end
  30. function check ()
  31.   succes,min=turtle.inspect()
  32.   print(min.name)
  33.   mon=min.name
  34.    if mon~=((("minecraft:stone") or ("minecraft:dirt")) or ("minecraft:grass")) then
  35.     turtle.dig()
  36.     end
  37.  end
  38.  
  39.        while true do
  40.         check()
  41.         turn()
  42.         check()
  43.         turn()
  44.         check()
  45.         turn()
  46.         check()
  47.         turn()
  48.         checkDown()
  49.         desc()
  50.         print(hauteur)
  51.         end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement