23.06.2015, 12:41
Reset the stats when a player disconnects. When a new player (who has no stat records joins) the stats from the old player are now written to the new one.
PHP код:
public OnPlayerDisconnect(playerid, reason)
{
PlayerInfo[playerid][pKills] = 0;
//etc...
return 1;
}