Advertisement
Imgoodisher

craftnet 2.1.2

Aug 7th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. mon = peripheral.wrap("back")
  2. mon.setTextScale(1)
  3. x, y = mon.getSize()
  4. mon.clear()
  5.  
  6. function cprint(text, ypos)
  7.  mon.setCursorPos(x/2-string.len(text)/2+1, ypos)
  8.  mon.write(text)
  9. end
  10.  
  11. cprint("   ______           ______  _   __     __ ", 1)
  12. cprint("  / ____/________ _/ __/ /_/ | / /__  / /_", 2)
  13. cprint(" / /   / ___/ __  / /_/ __/  |/ / _ \\/ __/", 3)
  14. cprint("/ /___/ /  / /_/ / __/ /_/ /|  /  __/ /_  ", 4)
  15. cprint("\\____/_/   \\__,_/_/  \\__/_/ |_/\\___/\\__/  ", 5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement