11.09.2013, 02:40
danielcantiliano le o que ele pediu
@ topic
aqui tem
@ topic
aqui tem
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
SendDeathMessage(killerid, playerid, reason);
new Morreu[MAX_PLAYER_NAME], Matou[MAX_PLAYER_NAME], string[115], arma;
arma = GetPlayerWeapon(playerid);
GetPlayerName(playerid, Morreu, sizeof(Morreu));
GetPlayerName(killerid, Matou, sizeof(Matou));
format(string, sizeof(string), "[ INFO ] O jogador %s te matou com com um(a) %s", Matou, arma);
SendClientMessage(playerid, -1, string);
format(string, sizeof(string), "[ INFO ] Voce matou o jogador %s com um(a) %s", Morreu, arma);
SendClientMessage(killerid, -1, string);
return 1;
}