[Ajuda] Anti db para todos os veiculos menos o ID
#1

Bom como que faz para o comando anti db funcionar em todos veiculos menos no id 520,519,425,432 ?

" eu sei que vc coloca alguma coisa ali no meio do code com id do veiculo que vc nao quer que o anti db o acuse
so que esqueci alguem pode ajuda nisso rapidao obrigado

Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    if(IsPlayerInAnyVehicle(killerid))
    {
        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;
}
Reply
#2

Use o GetPlayerVehicleModel para pegar o modelo (ID) do veнculo, e caso seja 520 nгo faзa nada, dк um else e cole a funзгo jб criada.
Reply
#3

Veja se isso funciona:

pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    switch(GetVehicleModel(GetPlayerVehicleID(playerid))
    {
        case 520, 519, 425, 432: return 0;

        default:
        {
            if(IsPlayerInAnyVehicle(killerid))
            {
                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;
}
OBS: Nгo sei porque aqui tudo que eu faзo fica mal indentado
Reply
#4

PHP код:
public OnPlayerDeath(playeridkilleridreason)
{
    if(
IsPlayerInAnyVehicle(killerid))
    {
        new 
GetPlayerVehicleID(killerid);
        new 
GetVehicleModel(s);

        if(
== 520 || == 519 || == 425 || == 432)
            return 
1;

        new 
string[100];
        new 
acusado[MAX_PLAYER_NAME];
        new 
vitima[MAX_PLAYER_NAME];
        
GetPlayerName(killeridacusadoMAX_PLAYER_NAME);
        
GetPlayerName(playeridvitimaMAX_PLAYER_NAME);
        
format(stringsizeof(string), "[ADB] %s Fez Drive-by em %s e serб Kikado Pelo ADM",acusado,vitima);
        
SendClientMessageToAll(0xCECE00AAstring);
    }
    return 
1;

Reply
#5

Obrigado los funcino perfeitamente aqui +REP
Obrigado a todos que me ajudaram tambem
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)