Advertisement
leo1553

Untitled

Jan 14th, 2015
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. local monitor = peripheral.wrap("top")
  2.  
  3. monitor.setBackgroundColor(colors.blue)
  4. monitor.setCursorPos(1, 1)
  5. monitor.clear()
  6.  
  7. monitor.setCursorPos(2, 7)
  8. monitor.write("An error has ocurred. To Continue:")
  9. monitor.setCursorPos(2, 8)
  10. monitor.write("Press Enter to return to BillOS, or")
  11. monitor.setCursorPos(2, 9)
  12. monitor.write("Press CRTL+ALT+DEL to restart your computer. if")
  13. monitor.setCursorPos(2, 10)
  14. monitor.write("do this, you will lose any unsaved information in")
  15. monitor.setCursorPos(2, 11)
  16. monitor.write("all open applications.")
  17.  
  18. monitor.setCursorPos(2, 14)
  19. monitor.write("Error: 0E : 016F : BFFHU3D4")
  20.  
  21. monitor.setCursorPos(13, 17)
  22. monitor.write("Press any key to continue _")
  23.  
  24. monitor.setCursorPos(24, 4)
  25. monitor.setBackgroundColor(colors.lightGray)
  26. monitor.setTextColor(colors.blue)
  27. monitor.write(" Bill ")
  28.  
  29. monitor.setCursorPos(1, 20)
  30.  
  31. monitor.setBackgroundColor(colors.black)
  32. monitor.setTextColor(colors.yellow)
  33.  
  34. local event, params = os.pullEvent("key")
  35.  
  36. monitor.clear()
  37. monitor.setCursorPos(1, 1)
  38. monitor.write("BillOS 1.6")
  39. monitor.setCursorPos(1, 2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement