Guest User

startup

a guest
Jul 12th, 2013
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. term.setTextColour(colours.Black)
  2. term.setBackgroundColour(colours.Blue)
  3. term.clear()
  4. term.setCursorPos(1,4)
  5. print("Welcome to the Master computer pass please..")
  6.  
  7.  
  8. correctpass = "fuckoff"
  9.  
  10. write("Password:")
  11.  
  12. pass = read("*")
  13.  
  14. if pass == (correctpass) then
  15. print("welcome Master controler")
  16. sleep(1)
  17. term.clear()
  18. term.setCursorPos(1,1)
  19.  
  20.  
  21. else
  22. print("Incorrect Go away..")
  23. sleep(5)
  24. term.run("startup")
  25. end
Advertisement
Add Comment
Please, Sign In to add comment