30.11.2012, 13:39
Hey guys, I'm having a problem with faction ranks saving. Basically what happens is I type /editranks and when I change the name, it changes the name in game, but it dosen't update/change it on the mysql database in phpmyadmin. It pretty much does this for all ranks, here is what one of the ranks coding is like its all the same just a different rank.
Any help is appreciated, thanks.
pawn Код:
case DIALOG_RANK2:
{
new query[400];
format(Factions[PlayerInfo[playerid][Faction]][Rank2], MAX_PLAYER_NAME, "%s", inputtext);
format(query, sizeof(query), "UPDATE Factions SET Rank2 = '%s' WHERE ID ='%d'", inputtext, PlayerInfo[playerid][Faction]);
mysql_query(query);
}