Ignore.
#3

I've got this mate:

pawn Код:
stock SaveStats(playerid)
{
    format(SQL_Query,sizeof(SQL_Query),"UPDATE `Accounts` SET `IP` = '%s', `Money` = '%i', `Level` = '%i', `AdminLevel` = '%i', `Faction` = '%i', `FactionRank` = '%i' WHERE `Username` = '%s'",
    Player[playerid][Ip],
    Player[playerid][Money],
    Player[playerid][Level],
    Player[playerid][AdminLevel],
    Player[playerid][Faction],
    Player[playerid][FactionRank],
    pName(playerid));
    print(SQL_Query);
    mysql_query(SQL_Query);
    mysql_free_result();
    printf("%s", SQL_Query);
    return 1;
}
I fixed the first error, this time it's saving the items in the wrong place?

Say, it's saving the AdminLevel amount in FactionRank..?

What's wrong?

Thanks!
Reply


Messages In This Thread
Help - by iGetty - 22.05.2012, 16:40
Re: Ignore. - by Ruben_Alonso - 22.05.2012, 16:45
Re: Ignore. - by iGetty - 22.05.2012, 17:00
Re: Ignore. - by iggy1 - 22.05.2012, 17:06
Re: Ignore. - by kikito - 22.05.2012, 17:15
Re: Ignore. - by iggy1 - 22.05.2012, 17:16
Re: Ignore. - by iGetty - 22.05.2012, 17:26
Re: Ignore. - by kikito - 22.05.2012, 17:36
Re: Ignore. - by iGetty - 22.05.2012, 17:36
Re: Ignore. - by kaisersouse - 22.05.2012, 17:43

Forum Jump:


Users browsing this thread: 1 Guest(s)