Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Redstone do Macaratoru
- function transferRedstone()
- while true do
- turtle.select(1)
- if turtle.suck() then -- Nasaje redstone z condenzeru před sebou
- if turtle.dropUp() then -- Vloží redstone nahoru do macaratoru
- print("Redstone vložen do Macaratoru")
- else
- print("Macarator plný, čekám...")
- end
- else
- print("Žádný redstone, čekám na výrobu...")
- end
- sleep(3) -- Prodleva pro synchronizaci
- end
- end
- transferRedstone()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement