i want it to look like this:

Try running OmniOS one or two times :P/>/> . Also, this code.
There was less than an hour between your (removed) bump post and your previous post. Be patient. You could start to consider bumping your topic after two or three weeks without a reply.
function os.bluscreen(errorMSG)
<formatted error message>
sleep(2)
os.shutdown()
end
local err = error
error = function(...)
local _, errorMSG = pcall(err, ...)
<formatted error message>
sleep(2)
os.shutdown()
end
Yes:function os.bluscreen(errorMSG) <formatted error message> sleep(2) os.shutdown() end
or:local err = error error = function(...) local _, errorMSG = pcall(err, ...) <formatted error message> sleep(2) os.shutdown() end
term.setBackgroundColor( colors.blue )
term.clear()
os.pullEvent( tostring({}) )
Yes:function os.bluscreen(errorMSG) <formatted error message> sleep(2) os.shutdown() end
or:local err = error error = function(...) local _, errorMSG = pcall(err, ...) <formatted error message> sleep(2) os.shutdown() end
i ran the first code and it gives me
bios:14: [string "bsod"]:2: unexpected symbol
i dont know much lua so can i get the full code for a BSOD
I suspect you want this:term.setBackgroundColor( colors.blue ) term.clear() os.pullEvent( tostring({}) )
Yes:function os.bluscreen(errorMSG) <formatted error message> sleep(2) os.shutdown() end
or:local err = error error = function(...) local _, errorMSG = pcall(err, ...) <formatted error message> sleep(2) os.shutdown() end
i ran the first code and it gives me
bios:14: [string "bsod"]:2: unexpected symbol
i dont know much lua so can i get the full code for a BSOD
Wow. This level of " being-spoonfed-and-still-not-getting-it" hurts. <formatted error message> is NO code. You have to replace it with code.
Also, if you don't know much Lua there's no need for an BSOD.
Congratulations on your 1000th post. Also, code I gave you works very well. Just modify the text.
done but i still have that line at the top what do i do?Just change the text. Make a nice term.clear too.
do you have any Lua knowledge?
we generally prefer to teach people how to write their own programs over writing programs on demand.
ok its been 12 hours can please i get some help here?
Be patient. You could start to consider bumping your topic after two or three weeks without a reply.
term.setBackgroundColor( colors.blue )
term.setTextColor( colors.white )
print( [[A problem has been detected and Windows has been shut down to prevent damage to your computer.
The problem seems to be caused by the following file: kbdhid.sys
MANUALLY_INITIATED_CRASH
If this is the first time you've seen this stop error screen, restart your computer. If this screen appears again, follow these steps:
Check to make sure any new hardware software is properly installed. If this is a new installation, ask your hardware or software manufacturer for any Windows updates you might need.
If problems continue, disable or remove any newly installed hardware or software. Disable BIOS memory options such as caching or shadowing. If you need to use safe mode to remove or disable components, restart your computer, press F8 to select Advanced Startup Options, and then select Safe Mode.
Technical Information:
*** STOP: 0x000000e2 (0x00000000, 0x00000000, 0x00000000, 0x00000000)
*** kbdhid.sys - Address 0x94efd1aa base at 0x94efb000 DateStamp 0x4a5bc705]] )
os.pullEvent( "key" )
os.shutdown()
I can manually emulate the exact thing, word-for-word. Other than that, I'm not exactly sure what you want - all of that information is irrelevant to computercraft and debugging.Spoiler
term.setBackgroundColor( colors.blue ) term.setTextColor( colors.white ) print( [[A problem has been detected and Windows has been shut down to prevent damage to your computer. The problem seems to be caused by the following file: kbdhid.sys MANUALLY_INITIATED_CRASH If this is the first time you've seen this stop error screen, restart your computer. If this screen appears again, follow these steps: Check to make sure any new hardware software is properly installed. If this is a new installation, ask your hardware or software manufacturer for any Windows updates you might need. If problems continue, disable or remove any newly installed hardware or software. Disable BIOS memory options such as caching or shadowing. If you need to use safe mode to remove or disable components, restart your computer, press F8 to select Advanced Startup Options, and then select Safe Mode. Technical Information: *** STOP: 0x000000e2 (0x00000000, 0x00000000, 0x00000000, 0x00000000) *** kbdhid.sys - Address 0x94efd1aa base at 0x94efb000 DateStamp 0x4a5bc705]] ) os.pullEvent( "key" ) os.shutdown()
local err = error
error = function(...)
local _, errorMSG = pcall(err, ...)
os.pullEventRaw = os.pullEvent
<formatted error message>
sleep(2)
os.shutdown()
end
you can put it into the function:I can manually emulate the exact thing, word-for-word. Other than that, I'm not exactly sure what you want - all of that information is irrelevant to computercraft and debugging.Spoiler
term.setBackgroundColor( colors.blue ) term.setTextColor( colors.white ) print( [[A problem has been detected and Windows has been shut down to prevent damage to your computer. The problem seems to be caused by the following file: kbdhid.sys MANUALLY_INITIATED_CRASH If this is the first time you've seen this stop error screen, restart your computer. If this screen appears again, follow these steps: Check to make sure any new hardware software is properly installed. If this is a new installation, ask your hardware or software manufacturer for any Windows updates you might need. If problems continue, disable or remove any newly installed hardware or software. Disable BIOS memory options such as caching or shadowing. If you need to use safe mode to remove or disable components, restart your computer, press F8 to select Advanced Startup Options, and then select Safe Mode. Technical Information: *** STOP: 0x000000e2 (0x00000000, 0x00000000, 0x00000000, 0x00000000) *** kbdhid.sys - Address 0x94efd1aa base at 0x94efb000 DateStamp 0x4a5bc705]] ) os.pullEvent( "key" ) os.shutdown()
So ever a error occures you get a Bluescreenlocal err = error error = function(...) local _, errorMSG = pcall(err, ...) os.pullEventRaw = os.pullEvent sleep(2) os.shutdown() end
You'd put it in the spot where the non-Lua code is (<formatted …)
… is actually a thing in Lua, since functions can take any number of arguments (regardless of how many are required).
local terminalWidth, terminalHeight = term.getSize() --# get the width and height of our computer terminal (ComputerCraft)
local lines = {"line 1", "line 2", "line 3", "line 4", "line 5", "line 6", "line 7", "line 8", "line 9", "line 10", "line 11", "line 12", "line 13", "line 14", "line 15", "line 16", "line 17", "line 18", "line 19", "line 20", "line 21", "line 22", "line 23"} --# these are our lines.
--# Print all the lines the screen can fit using print.
for i = 1, terminalHeight - 1 do --# that -1 is there because the 'print' function creates a new line under it at each call. Therefore our capacity is termHeight - 1 for this example
print( lines[ i ] ) --# print the line number 'i'. 'i' increases by 1 every iteration (loop)
end
--# The amount of lines we are trying to display is greater than our line capacity.
if #lines > terminalHeight then
local currentLine = terminalHeight - 1 --# Set the current line to our last displayed. This tells the program what line was just printed and therefore which to print next.
--# Do everything in this loop until all lines are printed.
while currentLine < #lines do
os.pullEvent("key") --# wait for the user to press a key
currentLine = currentLine + 1 --# advance the line by one now
print( lines[ currentLine ] ) --# print this line.
end
end