This commit is contained in:
Crispy 2025-05-22 20:51:25 +02:00
commit 12ffbdc45d
76 changed files with 79368 additions and 0 deletions

8
computer/12/startup.lua Normal file
View file

@ -0,0 +1,8 @@
s = peripheral.wrap("left")
while 1 do
sleep(10 + math.random(10))
for i = 0, math.random(3) + 2 do
s.playSound("block.gravel.break")
sleep(math.random(10)/20 + 0.2)
end
end