Advertisement
Batponney

ATM.CC

Dec 11th, 2019
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. local xterm,yterm = term.getSize()
  2.  
  3. function loginMenu()
  4. paintutils.drawLine(1,1,xterm,2,colors.lime)
  5. term.setBackgroundColor(colors.black)
  6. paintutils.drawLine(1,yterm-1,xterm,yterm,colors.lime)
  7. term.setBackgroundColor(colors.black)
  8. paintutils.drawLine(math.floor((xterm/2)-6)),math.floor((yterm/2)-1)),math.floor((xterm/2)+6),math.floor((yterm/2)-1),colors.lightGray)
  9. term.setBackgroundColor(colors.black)
  10. paintutils.drawLine(math.floor((xterm/2)-6)),math.floor((yterm/2)+1)),math.floor((xterm/2)+6),math.floor((yterm/2)+1),colors.lightGray)
  11.  
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement