h
This commit is contained in:
parent
1ff3cea4d6
commit
5422d52065
21 changed files with 21953 additions and 369 deletions
18
computer/13/startup.lua
Normal file
18
computer/13/startup.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
term.clear()
|
||||
term.setCursorPos(1,1)
|
||||
|
||||
|
||||
parallel.waitForAny(
|
||||
function()
|
||||
shell.run("shell")
|
||||
end,
|
||||
function()
|
||||
while true do
|
||||
os.pullEvent("turtle_inventory")
|
||||
if math.random(100) > 95 then
|
||||
peripheral.call("left","playSound","entity.cat.ambient")
|
||||
end
|
||||
end
|
||||
end
|
||||
)
|
||||
os.shutdown()
|
Loading…
Add table
Add a link
Reference in a new issue