21.03.2012, 11:37
I had to use this function...Was doing the same thing to me
Made by MadeMan
pawn Код:
stock CheckPass(file[],password[])
{
new buffer[129];
WP_Hash(buffer, sizeof(buffer), password);
if(strcmp(dini_Get(file,"Password"), buffer) == 0) return true;
return false;
}