#define FILTERSCRIPT #include #if defined FILTERSCRIPT #endif public OnFilterScriptInit() { print("\n--------------------------------------"); print(" [FS]AntiDriveBy Feito Por Ivanzico"); print(" - www.feksquad.blogspot.com -"); print("--------------------------------------\n"); return 1; } public OnPlayerDeath(playerid, killerid, reason) { if(IsPlayerInAnyVehicle(killerid)) { new string[100],acusado[24],vitima[24]; GetPlayerName(killerid,acusado,24); GetPlayerName(playerid,vitima,24); format(string, sizeof(string),"[ADB] %s Fez Drive-by em %s e serĂ¡ Kikado Pelo ADM",acusado,vitima); SendClientMessageToAll(0xCECE00AA, string); } return 1; }