Advertisement
Guest User

startup

a guest
Apr 28th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. term.setBackgroundColor(colors.gray)
  2. term.clear()
  3. term.setTextColor(colors.lime)
  4. write(" AROS SYSTEM 1.0 ")
  5. local grg = "maxolaxo"
  6. local status,input
  7.  
  8. repeat
  9. write("Zadajte heslo: ")
  10. term.setCursorPos(2,3)
  11. status,input = pcall(read)
  12. until input == grg
  13. term.setCursorPos(5,5)
  14. write("Pristup povoleny")
  15. sleep(2)
  16. term.setCursorPos(1,1)
  17. term.setBackgroundColor(colors.black)
  18. term.clear()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement