Guest User

Untitled

a guest
Apr 2nd, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. local w,h = term.getSize()
  2.  
  3. host = {
  4. sector = os.getComputerID(),
  5. modm = ".."
  6. }
  7.  
  8. snap_logo = {
  9. " ______ _ _ __ ___ ___ _ __ ",
  10. "| _ / _| | '__/ __/ _ \| '_ \ ",
  11. " / / (_| | | (_| (_) | | | | ",
  12. " /___\__,_|_| \___\___/|_| |_| "
  13. }
  14.  
  15. function rton(im, x, py)
  16. for y = 1, #im do
  17. term.setCursorPos(x, py + y - 1)
  18. term.write(im[y])
  19. end
  20. end
  21. term.setTextColor(colors.lime)
  22. rton(snap_logo, 5, 1)
  23. term.setCursorPos(w/2, h/2)
Advertisement
Add Comment
Please, Sign In to add comment