27.01.2012, 19:58
Hello,i've this warning:
warning 202: number of arguments does not match definition
In this code:
Is for show in /stats how much robberies has done the player.Is in OnGameModeInit,everything compiles fine,except that code.
Problem is in this line:
warning 202: number of arguments does not match definition
In this code:
pawn Код:
for(new i=0;i<MAX_PLAYERS;i++)
{
new file[128];
new name[MAX_PLAYER_NAME];
GetPlayerName(i, name, sizeof(name));
format(file, sizeof(file), SERVER_USER_FILE, name);
TotalRobberies = dini_Int(file, "Robberies", PlayerInfo[i][pRobberies]);
}
Problem is in this line:
pawn Код:
TotalRobberies = dini_Int(file, "Robberies", PlayerInfo[i][pRobberies]);