22.10.2011, 12:54
pawn Код:
deaths[playerid]++;
kills[killerid]++;
// examples:
deaths[playerid]+= 5; // will add 5 to the variable
deaths[playerid]++; // will add one to the variable
kills[playerid]-= 5; // will remove 5 from the variable
kills[playerid]--; // will remove one from the variable