03.03.2011, 22:31
Cara,isso tem que ser em OnPlayerDamage
Mas para a pessoa que foi atingida,й sу colocar no OnPlayerDeath,veja:
Nгo testei porque estou com pressa,mas deve ser isso que vc quer.
Flw.
Mas para a pessoa que foi atingida,й sу colocar no OnPlayerDeath,veja:
Код:
public OnPlayerDeath(playerid, killerid, reason) { //Para o player que morreu new pname[MAX_PLAYER_NAME]; GetPlayerName(giveplayerid, pname, MAX_PLAYER_NAME); format(string, sizeof(string), "Vocк Foi Morto pelo jogador %s", pname); SendClientMessageToAll(0xFF00FFFF, string); //Para o player que matou new pname[MAX_PLAYER_NAME]; GetPlayerName(playerid, pname, MAX_PLAYER_NAME); format(string, sizeof(string), "Vocк matou o jogador %s", pname); SendClientMessageToAll(0xFF00FFFF, string); return 1; }
Flw.