Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- timeHigh=0.2
- timeLow=0.2
- function FilterChest()
- turtle.suckDown()
- if (turtle.getItemCount(1)>0) then
- if (turtle.compareTo(16)==true) then
- turtle.drop()
- else
- turtle.turnRight()
- turtle.turnRight()
- turtle.drop()
- turtle.turnRight()
- turtle.turnRight()
- end
- FilterChest()
- end
- end
- function SpawnChicken()
- for i=1,150 do
- turtle.setOutput("top",true)
- os.sleep(timeHigh)
- turtle.setOutput("top",false)
- os.sleep(timeLow)
- end
- end
- FilterChest()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement