xXm0dzXx

Untitled

Nov 9th, 2012
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. local x,y = term.getSize()
  2.  
  3. local cPrint = function(text)
  4. local x2,y2 = term.getCursorPos()
  5. term.setCursorPos(math.ceil((x / 2) - (text:len() / 2)), y2)
  6.  
  7. print(text)
  8. end
  9.  
  10. cPrint("DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE")
  11. cPrint("Version 2, December 2004")
  12. print()
  13. cPrint("Copyright (C) 2004 Sam Hocevar <[email protected]>")
  14. print()
  15. cPrint("Everyone is permitted to copy and distribute verbatim or modified")
  16. cPrint("copies of this license document, and changing it is allowed as long")
  17. cPrint("as the name is changed.")
  18. print()
  19. cPrint("DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE")
  20. cPrint("TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION")
  21. print()
  22. print(" 0. You just DO WHAT THE FUCK YOU WANT TO.")
Advertisement
Add Comment
Please, Sign In to add comment