09.10.2010, 00:28
agr fiko legal
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(IsPlayerInAnyVehicle(killerid) && !IsPlayerInAnyVehicle(playerid))
{
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;
}