Posts: 1,071
Threads: 24
Joined: Aug 2014
Reputation:
0
Can you please elaborate more? I didnt understand what is it you want to do.
is it INI_WriteInt you're talking about? well if the field is of integer type, you use that method..
Posts: 1,168
Threads: 60
Joined: Dec 2016
Reputation:
0
The thing you are trying to do will not work.
Your passwords are encrypted in order to work.
In the tutorial you mentioned udb_hash is used.
You will have to use this in order to work.
You can not save the whole password and then read it in normal characters(words)
Example if your password is 12345678 or password12, you can not save it as that. It is saved in an encrypted way. which gets called on login also:
if(udb_hash(inputtext) == PlayerInfo[playerid][pPass])
What you are trying to do will not work and why would you even want that?
I wouldn't want to join a server where the owner just can see my password by opening a file.
Because when the owner can, someone else maybe be able to do also.
Posts: 1,071
Threads: 24
Joined: Aug 2014
Reputation:
0
Hashed code is generated with random characters. unless you make your own encryption system, whirlpool or any other hashing method will not give desired results.