09.10.2010, 00:22
Quote:
Na verdade, se vocк, como passageiro, e estiver dentro de um carro, e atirar contra um OUTRO CARRO, e esse carro explodir, o Anti-DB AINDA irб acusar como DB.
Use a reason 49. ._. |
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(IsPlayerInAnyVehicle(killerid))
{
if(IsPlayerInAnyVehicle(playerid))
{
return 1;
}
new string[100];
new acusado[MAX_PLAYER_NAME];
new vitima[MAX_PLAYER_NAME];
GetPlayerName(killerid, acusado, MAX_PLAYER_NAME);
GetPlayerName(playerid, vitima, MAX_PLAYER_NAME);
format(string, sizeof(string), "[ADB] %s Fez Drive-by em %s e serб Kikado Pelo ADM",acusado,vitima);
SendClientMessageToAll(0xCECE00AA, string);
}
return 1;
}