Advertisement
Aidan428

BSOD2

Oct 9th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.88 KB | None | 0 0
  1. --SPALDING LIMITATIONS DEBUG PROGRAM
  2.  
  3. --8x5 Advanced Monitor setup--
  4.  
  5.  
  6. --Initializing--
  7. m = peripheral.wrap("top")
  8. m.setBackgroundColor(2048)
  9. m.clear()
  10. m.setTextColor(1)
  11. m.setCursorPos(1,1)
  12.  
  13. --Writing Contents-
  14. textutils.slowPrint = m.write("A problem has been detected and Pegasus_AI has been shut down to prevent damage")
  15. m.setCursorPos(1, 2)
  16. m.write("to your computer.")
  17. m.setCursorPos(1, 4)
  18.  
  19. m.write("PERMISSIONS_VIOLATION_ATTEMPTED")
  20. m.setCursorPos(1, 6)
  21.  
  22. m.write("If this is the first time you've seen this Stop error screen,")
  23. m.setCursorPos(1, 7)
  24. m.write("Restart the server. If this screen appears again, follow")
  25. m.setCursorPos(1, 8)
  26. m.write("these steps:")
  27. m.setCursorPos(1, 10)
  28.  
  29. m.write("Check to make sure any new hardware or software is properly installed.")
  30. m.setCursorPos(1, 11)
  31. m.write("If this is a new installation, ask your hardware or software manufacturer")
  32. m.setCursorPos(1, 12)
  33. m.write("for any SpalDOS updates you might need.")
  34. m.setCursorPos(1, 14)
  35.  
  36.  
  37. m.write("If problems continue, disable or remove any newly installed hardware")
  38. m.setCursorPos(1, 15)
  39. m.write("or software. Disable BIOS memory options such as caching or shadowing.")
  40. m.setCursorPos(1, 16)
  41. m.write("If you need to use Safe Mode to remove or disable components, restart")
  42. m.setCursorPos(1, 17)
  43. m.write("your computer, press F8 to select Advanced Startup Options, and then")
  44. m.setCursorPos(1, 18)
  45. m.write("select Safe Mode.")
  46. m.setCursorPos(1, 20)
  47.  
  48. m.write("Technical information:")
  49. m.setCursorPos(1, 21)
  50. m.write("*** STOP: 0x0f00004e (0x000a0099, 0x0c18d373, 0x060e07b0, 0x00c40g08)")
  51. m.setCursorPos(1, 24)
  52.  
  53.  
  54. m.write("Beginning dump of physical memory...")
  55. m.setCursorPos(1, 25)
  56. m.write("Physical memory dump complete.")
  57. m.setCursorPos(1, 26)
  58. m.write("Contact your system administrator or technical support group for further")
  59. m.setCursorPos(1, 27)
  60. m.write("assistance.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement