Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Logo = {
  2. [[▒▒▒▒▒▒▒▒▒▒▒▒▒▒▄▄██████▄ ]],
  3. [[▒▒▒▒▒▒▒▒▒▒▄▄████████████▄ ]],
  4. [[▒▒▒▒▒▒▄▄██████████████████ ]],
  5. [[▒▒▒▄████▀▀▀██▀██▌███▀▀▀████ ]],
  6. [[▒▒▐▀████▌▀██▌▀▐█▌████▌█████▌]],
  7. [[▒▒█▒▒▀██▀▀▐█▐█▌█▌▀▀██▌██████ ]],
  8. [[▒▒█▒▒▒▒████████████████████▌ ]],
  9. [[▒▒▒▌▒▒▒▒█████░░░░░░░██████▀ ]],
  10. [[▒▒▒▀▄▓▓▓▒███░░░░░░█████▀▀ ]],
  11. [[▒▒▒▒▀░▓▓▒▐█████████▀▀▒ ]],
  12. [[▒▒▒▒▒░░▒▒▐█████▀▀▒▒▒▒▒▒ ]],
  13. [[▒▒░░░░░▀▀▀▀▀▀▒▒▒▒▒▒▒▒▒]],
  14. }
  15. local mon = peripheral.wrap("back")
  16. mon.setTextScale(1)
  17. term.redirect(mon)
  18. term.clear()
  19. term.setCursorPos(1,1)
  20. for i = 1, #Logo do
  21. print(Logo[i])
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement