Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --theMCcm's API--
- function clear()
- term.clear()
- term.setCursorPos(1,1)
- end
- function lineUp()
- x,y = term.getCursorPos()
- y = y - 1
- term.setCursorPos(1, y)
- end
- function lineDown()
- x,y = term.getCursorPos()
- y = y + 1
- term.setCursorPos(1, y)
- end
- function lineClear()
- term.clearLine()
- end
Add Comment
Please, Sign In to add comment