Don't like ads? PRO users don't see any ads ;-)
Guest

craftnet 2.2.2

By: Imgoodisher on Aug 7th, 2012  |  syntax: Lua  |  size: 0.39 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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)