06.08.2013, 15:20
Hey, I'm trying to add a K/D ratio into /stats but for some reason it's not updating the ratio from the default 0.
Код:
CMD:stats(playerid, params[])
{
new wstring[238];
pInfo[playerid][pKD] = pInfo[playerid][pKills] /= pInfo[playerid][pDeaths];
new kd = pInfo[playerid][pKD];
new kills = pInfo[playerid][pKills];
new deaths = pInfo[playerid][pDeaths];
format(wstring, sizeof(wstring), "Kills:[%d] Deaths:[%d] K/D:[%d]",kills,deaths,kd);
SendClientMessage(playerid,COLOR_WHITE, wstring);
return 1;
}

