This commit is contained in:
Crispy 2025-05-26 02:36:15 +02:00
parent fe086e3a0c
commit 1ff3cea4d6
29 changed files with 3206 additions and 79 deletions

7
computer/8/wood.lua Normal file
View file

@ -0,0 +1,7 @@
while true do
redstone.setOutput("left", false)
redstone.setOutput("right", not redstone.getOutput("right"))
os.sleep(20)
redstone.setOutput("left", true)
os.sleep(400)
end