30.12.2017, 19:05
Quote:
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. |