Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local robot = require("robot")
- local computer = require("computer")
- function sheer()
- for i = 1,4 do
- robot.turnRight()
- robot.use()
- end
- end
- function dropWool()
- for i = 1,5 do
- robot.count(4)
- if robot.count(4) >= 32 then
- robot.select(i)
- robot.dropDown()
- end
- end
- robot.select(1)
- end
- while true do
- sheer()
- -- dropWool()
- os.sleep(30)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement