Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --# Hacking theme by Hellkid98
- term_write = term_write or term.write
- term.write = function(text)
- if term.isColor() then term.setTextColor(colors.lime); term.setBackgroundColor(colors.black);
- end
- term_write(text)
- end
- term_setCursorBlink = term_setCursorBlink or term.setCursorBlink
- term.setCursorBlink = function(boolean)
- if term.isColor() then term.setTextColor(colors.lime)
- end
- if boolean then term_setCursorBlink(true)
- else
- term_setCursorBlink(false)
- end
- end
- term_clear = term_clear or term.clear
- term.clear = function()
- if term.isColor() then term.setBackgroundColor(colors.black) term_clear() end
- end
- os_version = os_version or os.version
- os.version = function()
- return "HackOS 9000.001"
- end
- term.clear()
- term.setCursorPos(1,1)
- print(os.version())
Add Comment
Please, Sign In to add comment