Advertisement
Inksaver

harvestTree01

Nov 22nd, 2014
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.98 KB | None | 0 0
  1. --[[
  2.     harvestTree01.lua
  3.     http://pastebin.com/1WvKJnWw
  4.     Simple script demonstrating:
  5.         - os object and os.sleep() method
  6.         - while and for loops
  7.         - If statements
  8. ]]--
  9.  
  10. os.sleep(2)      -- pause for 2 secs to allow time to press esc key
  11. turtle.dig()     -- dig base of tree
  12. turtle.craft()   -- craft wood to planks(1 wood or 1 planks = 15 fuel)
  13. turtle.refuel()  -- add 4 x 15 fuel (1 wood crafts to 4 planks)
  14. turtle.forward() -- go under tree
  15.  
  16. -- Loop to climb up tree and harvest trunk and surrounding leaves
  17. while turtle.detectUp() do -- continue loop while block detected above
  18.   turtle.digUp() -- Dig block above
  19.   turtle.up()    -- Move up
  20.   -- Inner loop to check for leaves
  21.   for i = 1, 4 do
  22.     if turtle.detect() then -- check if leaves in front
  23.       turtle.dig() --Dig leaves
  24.     end
  25.     turtle.turnRight()
  26.   end
  27. end
  28.  
  29. -- At top of the tree. New loop to return to ground
  30. while not turtle.detectDown() do -- While nothing detected below
  31.   turtle.down() -- Go down
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement