Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Extended Term API For Computers And Monitors
- -- Made By Jadengregory00
- function clearScreen()
- term.clear()
- term.setCursorPos(1,1)
- end
- function cPrint(text)
- local w, h = term.getSize()
- local x, y = term.getCursorPos()
- term.setCursorPos(math.ceil((w / 2) - (text:len() / 2)), y)
- print(text)
- end
- function printBorder()
- -- Note If Use In Programs Remember When Setting New Pos Do term.setCursorPos(2, <line>)
- local w, h = term.getSize()
- local x, y = term.getCursorPos()
- term.setCursorPos(1, 1)
- write("+")
- length = w - 3
- for i = 1, length do
- write("-")
- end
- print("+")
- down = h - 3
- gap = length
- for i = 1, down do
- write("|")
- for i = 1, gap do
- write(" ")
- end
- print("|")
- end
- write("+")
- for i = 1, length do
- write("-")
- end
- print("+")
- term.setCursorPos(1,2)
- end
- function clearLineTo(line)
- local width, height = term.getCursorPos()
- height = height - 1
- n = height-line
- n = n + 1
- for i = 1, n do
- term.setCursorPos(1, height)
- term.clearLine()
- height = height - 1
- end
- end
- function redOpen()
- rednet.open("right")
- rednet.open("left")
- rednet.open("bottom")
- rednet.open("top")
- rednet.open("back")
- rednet.open("front")
- end
- function monPrint(text, side, size)
- if peripheral.isPresent( side ) then
- mon = peripheral.wrap( side )
- mon.setTextScale( size )
- local width , height = mon.getCursorPos()
- print(height)
- mon.write( text )
- useHeight = height
- useHeight = useHeight + 1
- mon.setCursorPos(1, useHeight)
- else
- print("No Monitor On That Side")
- end
- end
- function monClear(side)
- if peripheral.isPresent( side ) then
- mon = peripheral.wrap( side )
- mon.clear()
- mon.setCursorPos(1,1)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement