SA-MP Forums Archive
[AJUDA]/trancar - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA]/trancar (/showthread.php?tid=297836)



[AJUDA]/trancar - ReDKiiL - 18.11.2011

Galera To Fazendo Um /trancar mais todos player entra aff

code:
pawn Код:
CMD:trancar(playerid, params[])
{
    if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER)return SendClientMessage(playerid,fail,"ERRO: Vocк Nгo Estб Em Um Veiculo Como Motorista");
    for(new i=0, x = GetMaxPlayers(); i != x; ++i)
    {
        if(playerid != i)
        {
        SetVehicleParamsForPlayer(GetPlayerVehicleID(playerid),i, 0, 0);
        }
    }
    SendClientMessage(playerid,amarelo,"INFO: Veiculo Trancado");
    return 1;
}



Re: [AJUDA]/trancar - ViniBorn - 18.11.2011

Porque nгo usa SetVehicleParamsEx ?


Re: [AJUDA]/trancar - ReDKiiL - 18.11.2011

certo atй deu mais bloqueia atй o player que trancou :S
code:
pawn Код:
CMD:trancar(playerid, params[])
{
    if(!IsPlayerInAnyVehicle(playerid))return SendClientMessage(playerid,fail,"ERRO: Vocк Nгo Estб Em Um Veiculo");
    for(new i=0,x = GetMaxPlayers(); i != x; ++i)
    {
    if(i != playerid)
    {
    SetVehicleParamsEx(GetPlayerVehicleID(playerid),false,false,false,true,false,false,false);
    }
    }
    SendClientMessage(playerid,amarelo,"INFO: Veiculo Trancado");
    return 1;
}
CodeІ:
pawn Код:
CMD:trancar(playerid, params[])
{
    if(!IsPlayerInAnyVehicle(playerid))return SendClientMessage(playerid,fail,"ERRO: Vocк Nгo Estб Em Um Veiculo");
    SetVehicleParamsEx(GetPlayerVehicleID(playerid),false,false,false,true,false,false,false);
    SendClientMessage(playerid,amarelo,"INFO: Veiculo Trancado");
    return 1;
}
Coloquei Com e Sem o Loop e Ambros Bloquearгo o Player Que Trancou



Re: [AJUDA]/trancar - Sergiinhonike - 18.11.2011

SetVehicleParamsForPlayer e destranca pro id do player que trancou(playerid).


Re: [AJUDA]/trancar - ReDKiiL - 18.11.2011

Mais o SetVehicleParamsForPlayer Nao Tranca Para Ninguem :S


Re: [AJUDA]/trancar - ViniBorn - 18.11.2011

Tranca o carro pelo SetVehicleParamsEx (Code 2) e coloca o jogador que trancou o carro por meio do PutPlayerInVehicle