SHOW:
|
|
- or go back to the newest paste.
| 1 | sleep(1) | |
| 2 | p = peripheral.wrap("top")
| |
| 3 | while true do | |
| 4 | if p.getStackInSlot(1) then | |
| 5 | print("Item Detected in chest - Mining....")
| |
| 6 | shell.run("mine")
| |
| 7 | else | |
| 8 | print("No item Detected. Waiting....")
| |
| 9 | sleep(5) | |
| 10 | end | |
| 11 | end |