Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("/Base64")
- rednet.open("back")
- local screen = 1
- function drawMAIN()
- term.setBackgroundColor(colors.white)
- term.clear()
- term.setCursorPos(9,3)
- term.setTextColor(colors.red)
- term.write("Creatopico")
- term.setCursorPos(12,4)
- term.write("Bank")
- local sx,sy = term.getSize()
- term.setBackgroundColor(colors.red)
- for i=1,sx do
- term.setCursorPos(i,6)
- term.write(" ")
- end
- term.setTextColor(colors.gray)
- term.setCursorPos(12,8)
- term.write("LOGIN")
- term.setCursorPos(10,10)
- term.write("REGISTER")
- for i=1,sx do
- term.setCursorPos(i,14)
- term.write(" ")
- end
- end
- drawMAIN()
- function drawLOGIN()
- term.setBackgroundColor(colors.white)
- term.clear()
- term.setTextColor(colors.red)
- term.setCursorPos(12,3)
- term.write("LOGIN")
- term.setBackgroundColor(colors.red)
- term.setTextColor(colors.white)
- local sx,sy = term.getSize()
- for i=1,sx do
- term.setCursorPos(i,6)
- term.write(" ")
- end
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(2,10)
- for i=1,10 do
- term.write(" ")
- term.setCursorPos(2+i,10)
- end
- term.setTextColor(colors.red)
- term.setBackgroundColor(colors.white)
- term.setCursorPos(3,9)
- term.write("CARD-ID")
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(2,14)
- for f=1,10 do
- term.write(" ")
- term.setCursorPos(2+f,14)
- end
- term.setTextColor(colors.red)
- term.setBackgroundColor(colors.white)
- term.setCursorPos(3,13)
- term.write("PASSWORD")
- term.setBackgroundColor(colors.red)
- term.setTextColor(colors.white)
- term.setCursorPos(2,17)
- term.write("BACK")
- end
- -- loop
- while true do
- local event, button, x, y = os.pullEvent( "mouse_click" )
- -- LOGIN BT HANDL
- if (screen == 1) then
- if (y == 8 and x > 11 and x < 18) then
- drawLOGIN()
- screen = 2
- else
- end
- elseif (screen == 2) then
- if (y == 17 and x > 1 and x < 7) then
- drawMAIN()
- screen = 1
- elseif (y == 10 and x > 1 and x < 13) then
- term.setBackgroundColor(colors.lightGray)
- term.setTextColor(colors.white)
- term.setCursorPos(1,10)
- for i=1,10 do
- term.setCursorPos(1+i,10)
- term.write(" ")
- end
- term.setCursorPos(2,10)
- local card = read()
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(1,10)
- for i=1,10 do
- term.setCursorPos(1+i,10)
- term.write(" ")
- end
- term.setCursorPos(2,10)
- term.write(card)
- end
- end
- end
Add Comment
Please, Sign In to add comment