22.05.2012, 17:00
I've got this mate:
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!
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;
}
Say, it's saving the AdminLevel amount in FactionRank..?
What's wrong?
Thanks!