Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("sAPI")
- monitors = {{"25", "19"}, {"18", "24"}}
- sAPI.setMonitors(monitors)
- w, h = sAPI.getSize()
- sAPI.setBackgroundColor(colors.black)
- sAPI.clear()
- sAPI.setCursorPos(1, 1)
- text = ""
- for f = 1, 10 do
- text = (text .. "1234567890abcdefghijklmnopqrstuvwxyz ")
- end
- sAPI.setTextColor(colors.red)
- sAPI.setBackgroundColor(colors.blue)
- sAPI.printText(text)
- sAPI.fillBox(75, 35, 20, 15, " ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement