Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. m=peripheral.wrap('back')
  2. m.setBackgroundColor(colors.white)
  3. m.setTextScale(2)
  4. m.clear()
  5. local lw, lh = m.getSize()
  6. local c = m.setTextColor
  7.  
  8. function cw (text, py)
  9. m.setCursorPos((lw-#text)/2+1, py)
  10. m.write(text)
  11. end
  12.  
  13.  
  14. c(colors.red)
  15. cw('Rules', 2)
  16.  
  17. c(colors.gray)
  18. cw('Exercise common sense in public chat' ,4)
  19. cw('No advertising', 5)
  20. cw('Use our Teamspeak for protection against DDoS', 6)
  21. cw('No duping or exploits', 7)
  22. cw('No bases ontop of the nether', 8)
  23. cw('No AFK machines', 9)
  24. cw('No macros / scripts', 10)
  25. cw('Do not ask for ranks or items from staff', 11)
  26. cw('Staff decisions are final', 12)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement