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

18
computer/20/startup.lua Normal file
View file

@ -0,0 +1,18 @@
screen = peripheral.wrap("bottom")
message = {
"Menu coming soon!",
"Don't miss our opening day 50% off!",
"The best vegan* fast food available"
}
i= 1
while true do
screen.clear()
screen.setCursorPos(1,1)
screen.write(message[i])
i = i+1
if i > #message then
i = 1
end
sleep(4)
end