Advertisement
TIMAS_Bro

For Allegory

Jan 5th, 2024 (edited)
1,033
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. local vhod = "back" -- Posible: front, back,right, left, bottom, top
  2. local vyhod = "front"
  3. local time = 30 -- seconds
  4. redstone.setOutput(vyhod, false)
  5.  
  6.  
  7. local strength = 0
  8.  
  9. while true do
  10.     os.sleep(time-1)
  11.     if redstone.getInput(vhod) then
  12.         if strength < 6 then
  13.             strength = status + 1
  14.             redstone.setAnalogOutput(vyhod, strength)
  15.         else
  16.             redstone.setOutput(vyhod, false)
  17.             break
  18.         end
  19.     end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement