Advertisement
Guest User

startup.lua

a guest
Feb 23rd, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. term.setBackgroundColor(colors.cyan)
  2. shell.run("clear")
  3.  
  4.  
  5. -- Místo pro kod obrázku :D
  6.  
  7.  
  8. term.setCursorPos(10,9)
  9. write("Username: ")
  10. term.setBackgroundColor(colors.lightBlue)
  11. write("                  ")
  12. term.setBackgroundColor(colors.cyan)
  13. term.setCursorPos(10,11)
  14. write("Password: ")
  15. term.setBackgroundColor(colors.lightBlue)
  16. write("                  ")
  17. term.setCursorPos(20,9)
  18. name = io.read()
  19. term.setCursorPos(20,11)
  20. pass = io.read()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement