This is what I have so far:
I want the user and pass to come from a file called user.txt
and I also I want if the person presses 2 I want it to take them to a form were they can make an account and then that account gets saved to user.txt.
;my login from ;variables usernm = 141 passwd = 89511 Goto anew .bnew newuser = Input$("What is your perferd user (must be a number)? ") newpass = Input$("Password (must be a number)? ") Delay 250 Print "Thank You!" Print " " Delay 500 Goto begin .aNew k = Input$("Do you have an account (press 1 for yes, 2 for no)? ") If k = 1 Then Delay 250 Print "Thank You!" Print " " Delay 150 Goto begin Else If k = 2 Then Print " " Delay 500 Delay 150 Goto bnew Else Print "what?" Delay 100 Goto aNew EndIf .begin user = Input$("User: ") pass = Input$("Pass: ") If user = usernm And pass = 89511 Then Print "Congrats!" Delay 3500 End Else Print "sorry!" Print " " Delay 1000 Goto begin EndIf
I want the user and pass to come from a file called user.txt
and I also I want if the person presses 2 I want it to take them to a form were they can make an account and then that account gets saved to user.txt.