Posted 04 November 2012 - 05:34 AM
Post:
The error message:
The bios.lua file, lines 131-137:
Where is the problem?
Spoiler
The startup script:Spoiler
while true do
rs.setOutput("top", true)
sleep("1")
rs.setOutput("top", false)
sleep("1")
term.clear()
shell.run("shell")
end
The error message:
Spoiler
CraftOS 1.4
bios:133: Expected Number
>
The bios.lua file, lines 131-137:
Spoiler
-- Install globals
function sleep( _nTime )
local timer = os.startTimer( _nTime )
repeat
local sEvent, param = os.pullEvent( "timer" )
until param == timer
end
Where is the problem?