Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local w,h = term.getSize()
- host = {
- sector = os.getComputerID(),
- modm = ".."
- }
- snap_logo = {
- " ______ _ _ __ ___ ___ _ __ ",
- "| _ / _| | '__/ __/ _ \| '_ \ ",
- " / / (_| | | (_| (_) | | | | ",
- " /___\__,_|_| \___\___/|_| |_| "
- }
- function rton(im, x, py)
- for y = 1, #im do
- term.setCursorPos(x, py + y - 1)
- term.write(im[y])
- end
- end
- term.setTextColor(colors.lime)
- rton(snap_logo, 5, 1)
- term.setCursorPos(w/2, h/2)
Advertisement
Add Comment
Please, Sign In to add comment