04.02.2018, 17:42
Something like this will set them to count up
PHP код:
public OnPlayerDeath(playerid, killerid, reason)
{
pInfo[killerid][Kills] += 1;
pInfo[playerid][Deaths] += 1;
return 1;
}