02-10-2006, 01:45 PM
I was wondering if someone knew how to do the save password, and enter it twice when creating a account?
Password
|
02-10-2006, 01:45 PM
I was wondering if someone knew how to do the save password, and enter it twice when creating a account?
02-10-2006, 04:13 PM
the password is saved automatically and since it's in INI format it's something like
writeini app.path & "/accounts/" & w/e, "CHAR" & player(index).charnum(player(index)), "Password", W/ePasswordIs i don't use ini's anymore but it's something like that... (on the server...) to do a double pw check just do two password boxes... and then when they hit the "add account" or whatever button just do... If txtPassword1.text txtPassword2.text then Call MsgBox("Your Passwords Do Not Match.") Exit Sub End if
02-10-2006, 07:31 PM
Ohh, Ok, that's what I ment, though I got my words mixed up... I ment the remember account thing that's in Elysium/ Konfuze; and several others.
02-10-2006, 08:27 PM
MS does not come default with read/write ini funtions. You need to use the getvar and putvar functions, unless you add the un-needed code for write/read ini into your source.
02-10-2006, 08:48 PM
I personally already added the read and write ini system I think, I have modini with this in it
Code: Option Explicit |
« Next Oldest | Next Newest »
|