This commit is contained in:
Crispy 2025-06-22 00:08:46 +02:00
parent f8fd2513c8
commit 491112768c
27 changed files with 1095 additions and 3537 deletions

4
computer/11/.settings Normal file
View file

@ -0,0 +1,4 @@
{
[ "motd.enable" ] = false,
[ "motd.path" ] = "/rom/motd.txt:/motd.txt:/rom/cccbridge_motd.txt",
}

1
computer/11/oilrig.txt Normal file
View file

@ -0,0 +1 @@
9

23
computer/11/square.lua Normal file
View file

@ -0,0 +1,23 @@
turtle.forward()
right = true
function turn()
if right then
turtle.turnRight()
else
turtle.turnLeft()
end
end
for row = 1, 5 do
for block = 1, 16 do
turtle.placeDown()
turtle.forward()
end
turn()
turtle.forward()
turn()
turtle.forward()
right = not right
end