mew
This commit is contained in:
parent
fe086e3a0c
commit
1ff3cea4d6
29 changed files with 3206 additions and 79 deletions
18
computer/20/startup.lua
Normal file
18
computer/20/startup.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue