25.09.2014, 07:55
I noticed that the password is being loaded as an integer entry. Unless all the players who play your server only have numbers in their passwords, this will cause a problem.
You might want to try something like this:
This should work, PM if it doesn't.
You might want to try something like this:
pawn Код:
//For the password variable, you have to add the size of the variable
pPass[128], //128 should be a good size, however idk how many characters the hasher you use allows, so change accordingly
pCash,
//etc
//then, to load the password as a string
INI_String("Password",PlayerInfo[playerid][pPass], 128);