Money dissapearing
#1

Working with Kush's tutorial on how to create a login/register system with Y_INI
https://sampforum.blast.hk/showthread.php?tid=273088

I've put over 80 grand in my player's data and it has saved and after a few dozen logins or so the money is gone for some reason. It also happens with my friends too. Anyone know why?

pawn Код:
enum pInfo
{
    pPass,
    pCash
}
pawn Код:
forward LoadUser_data(playerid,name[],value[]);
public LoadUser_data(playerid,name[],value[])
{
    INI_Int("Password",PlayerInfo[playerid][pPass]);
    INI_Int("Cash",PlayerInfo[playerid][pCash]);
    return 1;
}
pawn Код:
case 1:
        {
            if (!response) return Kick(playerid);
            if(response)
            {
                if(!strlen(inputtext)) return ShowPlayerDialog(playerid,1,DIALOG_STYLE_PASSWORD,"Registration","Invalid password!\nType a password to register","Register","Cancel");
                new INI:File = INI_Open(UserPath(playerid));
                INI_SetTag(File,"data");
                INI_WriteInt(File,"Password",udb_hash(inputtext));
                INI_WriteInt(File,"Cash",0);
            }
        }
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)