Advertisement
karelvysinka

down_turtle

Nov 19th, 2024 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.56 KB | Gaming | 0 0
  1. -- Redstone do Macaratoru
  2. function transferRedstone()
  3.     while true do
  4.         turtle.select(1)
  5.         if turtle.suck() then -- Nasaje redstone z condenzeru před sebou
  6.             if turtle.dropUp() then -- Vloží redstone nahoru do macaratoru
  7.                 print("Redstone vložen do Macaratoru")
  8.             else
  9.                 print("Macarator plný, čekám...")
  10.             end
  11.         else
  12.             print("Žádný redstone, čekám na výrobu...")
  13.         end
  14.         sleep(3) -- Prodleva pro synchronizaci
  15.     end
  16. end
  17.  
  18. transferRedstone()
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement