Advertisement
Guest User

wood

a guest
Dec 30th, 2014
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.30 KB | None | 0 0
  1. --Wood
  2.  
  3. --------------------
  4. --| slot | item    |
  5. ---------+----------
  6. --|  1   | gravel  |
  7. --|  2   | wood    |
  8. --|  3   | sand    |
  9. --|  4   | stone   |
  10. --|  5   | sapling |
  11. --|  6   | slab    |
  12. --|  16  | fuel    |
  13. --------------------
  14.  
  15. turtle.select(4) --stone
  16. if turtle.compareDown() then
  17.   go()
  18.   turtle.select(3) --sand
  19.   if turtle.compareDown() then
  20.     turtle.turnLeft()
  21.     cut()
  22.     plant()
  23.     turtle.turnRight()
  24.   else
  25.     turtle.select(6) --slab
  26.     if turtle.compareDown() then
  27.       cut()
  28.       plant()
  29.       turtle.turnRight()
  30.     else
  31.       turtle.select(4) --stone
  32.       if turtle.compareDown() then
  33.         turtle.turnRight()
  34.       end
  35.     end
  36.   end
  37. end
  38.    
  39.    
  40. function go() --avance
  41.  print("going")
  42.  turtle.select(1) --gravel
  43.  turtle.forward()
  44.  while turtle.compareDown() do
  45.   turtle.forward()
  46.  end
  47. end
  48.  
  49. function plant()
  50.  print("planting")
  51.  if not turtle.detect() then
  52.   turtle.select(5) --sapling
  53.   turtle.place()
  54.  end
  55. end
  56.  
  57. function cut()
  58.  print("cutting")
  59.  turtle.select(2) --wood
  60.  if turtle.compare() then
  61.   turtle.dig()
  62.   turtle.forward()
  63.   while turtle.detectUp() do
  64.    turtle.digUp()
  65.    turtle.up()
  66.   end
  67.   while not turtle.detectDown() do
  68.    turtle.down()
  69.   end
  70.   turtle.back()
  71.  end
  72.  if not turtle.detect() then
  73.   plant()
  74.  end
  75. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement