SHOW:
|
|
- or go back to the newest paste.
1 | x=0 | |
2 | while true do | |
3 | sleep(2) | |
4 | if turtle.getItemCount(1)==1 then | |
5 | if x > 5 then | |
6 | turtle.dropDown() | |
7 | x=0 | |
8 | print("Neue Biene") | |
9 | turtle.back() | |
10 | turtle.suckDown() | |
11 | turtle.forward() | |
12 | turtle.dropUp() | |
13 | else | |
14 | turtle.dropUp() | |
15 | x=x+1 | |
16 | print(x,". Durchlauf") | |
17 | end | |
18 | end | |
19 | end |