Guest User

bank.lua

a guest
Oct 9th, 2023
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.45 KB | None | 0 0
  1. os.loadAPI("/Base64")
  2. rednet.open("back")
  3. local screen = 1
  4. function drawMAIN()
  5. term.setBackgroundColor(colors.white)
  6. term.clear()
  7. term.setCursorPos(9,3)
  8. term.setTextColor(colors.red)
  9. term.write("Creatopico")
  10. term.setCursorPos(12,4)
  11. term.write("Bank")
  12. local sx,sy = term.getSize()
  13. term.setBackgroundColor(colors.red)
  14. for i=1,sx do
  15.   term.setCursorPos(i,6)
  16.   term.write(" ")
  17. end
  18. term.setTextColor(colors.gray)
  19. term.setCursorPos(12,8)
  20. term.write("LOGIN")
  21. term.setCursorPos(10,10)
  22. term.write("REGISTER")
  23. for i=1,sx do
  24.   term.setCursorPos(i,14)
  25.   term.write(" ")
  26. end
  27. end
  28. drawMAIN()
  29. function drawLOGIN()
  30.   term.setBackgroundColor(colors.white)
  31.   term.clear()
  32.   term.setTextColor(colors.red)
  33.   term.setCursorPos(12,3)
  34.   term.write("LOGIN")
  35.   term.setBackgroundColor(colors.red)
  36.   term.setTextColor(colors.white)
  37.   local sx,sy = term.getSize()
  38.   for i=1,sx do
  39.     term.setCursorPos(i,6)
  40.     term.write(" ")
  41.   end
  42.   term.setBackgroundColor(colors.gray)
  43.   term.setCursorPos(2,10)
  44.   for i=1,10 do
  45.     term.write(" ")
  46.     term.setCursorPos(2+i,10)
  47.   end
  48.   term.setTextColor(colors.red)
  49.   term.setBackgroundColor(colors.white)
  50.   term.setCursorPos(3,9)
  51.   term.write("CARD-ID")
  52.   term.setBackgroundColor(colors.gray)
  53.   term.setCursorPos(2,14)
  54.   for f=1,10 do
  55.     term.write(" ")
  56.     term.setCursorPos(2+f,14)
  57.   end
  58.   term.setTextColor(colors.red)
  59.   term.setBackgroundColor(colors.white)
  60.   term.setCursorPos(3,13)
  61.   term.write("PASSWORD")
  62.   term.setBackgroundColor(colors.red)
  63.   term.setTextColor(colors.white)
  64.   term.setCursorPos(2,17)
  65.   term.write("BACK")
  66. end
  67. -- loop
  68. while true do
  69.   local event, button, x, y = os.pullEvent( "mouse_click" )
  70.   -- LOGIN BT HANDL
  71.   if (screen == 1) then
  72.   if  (y == 8 and x > 11 and x < 18) then
  73.     drawLOGIN()
  74.     screen = 2
  75.   else
  76.   end
  77.   elseif (screen == 2) then
  78.     if (y == 17 and x > 1 and x < 7) then
  79.       drawMAIN()
  80.       screen = 1
  81.     elseif (y == 10 and x > 1 and x < 13) then
  82.       term.setBackgroundColor(colors.lightGray)
  83.       term.setTextColor(colors.white)
  84.       term.setCursorPos(1,10)
  85.       for i=1,10 do
  86.         term.setCursorPos(1+i,10)
  87.         term.write(" ")
  88.       end
  89.       term.setCursorPos(2,10)
  90.       local card = read()
  91.       term.setBackgroundColor(colors.gray)
  92.       term.setCursorPos(1,10)
  93.       for i=1,10 do
  94.         term.setCursorPos(1+i,10)
  95.         term.write(" ")
  96.       end
  97.       term.setCursorPos(2,10)
  98.       term.write(card)
  99.    
  100.     end
  101.   end
  102. end
Add Comment
Please, Sign In to add comment