Advertisement
Guest User

welcome

a guest
Apr 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. local m = peripheral.wrap("right")
  2. m.clear()
  3.  
  4. m.setTextColor(256)
  5. m.setCursorPos(1,1)
  6. m.write('+------------------------------------------------+')
  7.  
  8. local function centerText(text)
  9. local x,y = m.getSize()
  10. local x2,y2 = m.getCursorPos()
  11. m.setCursorPos(math.ceil((x/2) - (text:len() / 2)), y2)
  12. m.write(text)
  13. end
  14.  
  15. centerText('Team Ghost Bride FTB Ultimate Server')
  16.  
  17. i = 2
  18.  
  19. repeat  
  20. m.setCursorPos(1,i)
  21. m.write('|')
  22. m.setCursorPos(50,i)
  23. m.write('|')
  24. i = i+1
  25. until i == 19
  26.  
  27. m.setCursorPos(1,19)
  28. m.write('+---------------------------Copyright by bl0ckey-+')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement