30.10.2011, 19:32
You actually just need:
pawn Код:
public OnPlayerDeath( playerid,killerid,reason )
{
if ( killerid != INVALID_PLAYER_ID )
{
PlayerInfo[killerid][pKills]++;
}
PlayerInfo[playerid][pDeaths]++;
return 1;
}

