:3
This commit is contained in:
parent
491112768c
commit
68ec37f994
66 changed files with 6591 additions and 10096 deletions
22
computer/13/startup/startup.lua
Normal file
22
computer/13/startup/startup.lua
Normal file
|
@ -0,0 +1,22 @@
|
|||
term.clear()
|
||||
term.setCursorPos(1,1)
|
||||
_G.meow = function()
|
||||
peripheral.call("left","playSound","entity.cat.ambient")
|
||||
end
|
||||
parallel.waitForAny(
|
||||
function()
|
||||
shell.run("shell")
|
||||
end,
|
||||
function()
|
||||
while true do
|
||||
os.pullEvent("turtle_inventory")
|
||||
if math.random(100) > 95 then
|
||||
meow()
|
||||
--peripheral.call("left","playSound","entity.cat.ambient")
|
||||
end
|
||||
end
|
||||
end
|
||||
--,
|
||||
--require("/secretvirus")
|
||||
)
|
||||
os.shutdown()
|
Loading…
Add table
Add a link
Reference in a new issue