I'm working on an OS, so far i got the login menu working, but when i make the screen ask "Whats the password" i type it in, then when i try to make the "Ask (anything) and wait" block, i can't seem to do it, help will be appreciated , Btw, you'll also get to be in the project notes for helping , thanks in advance .
~RoyalToHisLoyal~
Offline
You should just be able to do something like
set [password v] to [password] //insert a password here. ask [password] and waitThen to check if the password is correct, do something like
if < (answer) = [password v] > Rest of Code Here!If you want, you can also let the user change their password.
ask [Please enter a password.] and wait set [password v] to (answer)You can even have the user verify their password like this:
ask [Please enter a password.] and wait set [password check v] to (answer) ask [Please confirm your password.] and wait if < (answer) = [ password check v ] > set [password v] to (answer) say [Password Changed] for (3) secs end
Last edited by elfin8er (2012-10-23 12:39:53)
Offline