Advertisement
Imgoodisher

craftnet 2.2.2

Aug 7th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement