public OnPlayerDeath(playerid, killerid, reason) {
SetPVarInt(killerid, "matou", (GetPVarInt(killerid, "matou") + 1) );
DeletePVar(playerid, "matou");
static
nome[24],
str[33]
;
GetPlayerName(killerid, nome, 24);
format (str, 33, "%s matou %d!", nome, GetPVarInt(killerid, "matou") );
SendClientMessageToAll(-1, str);
return 1;
}