Advertisement
Criosdu79

Client0.0.2

Feb 26th, 2020
470
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local component = require("component")
  2. local event = require("event")
  3. local modem = component.modem
  4. local gpu = component.gpu
  5. local lenght, weight = gpu.getResolution()
  6. local slot = 1
  7. local term = require("term")
  8. maxslot = 0
  9.  
  10. local function cube(d1, d2, f1, f2, color)
  11. gpu.setBackground(color)
  12. gpu.fill(d1, d2, f1, f2, " ")
  13. end
  14.  
  15. local function login()
  16. cube(1, 1, 79, 39, 0xffffff)
  17. end
  18.  
  19. while true do
  20. login()
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement