rednet.open() while true do id, message = rednet.receive() if message == "open" then turtle.forward() turtle.turnLeft() turtle.dig() turtle.up() turtle.dig() turtle.down() turtle.back() turtle.turnRight() turtle.back() sleep(5) turtle.forward() turtle.turnLeft() turtle.place() turtle.up() turtle.place() turtle.down() turtle.back() turtle.turnRight() turtle.back() end endby the way, sorry for the poor indenting, I made the "if" statement before the while true do, and before all the turtle. stuff and I didn't feel like fixing the indentations, it's still readable though, otherwise I would've taken the time to fix indentation.
EDIT: almost made a mistake. I accidentally typed the error on line 5. It's actually on line 11. Fixed.
Another edit: Line 11 is turtle.back() This seriously confuses me. Doesn't/shouldn't need a string.
Edited by applesauce10189, 10 January 2014 - 01:39 AM.












