SA-MP Forums Archive
[Ajuda] Comando Deletar Veнculo - 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] Comando Deletar Veнculo (/showthread.php?tid=430488)



[Pode Deletar o Tуpico] - GustavinCTN - 14.04.2013

Jб consegui jб.


Re: Comando Deletar Veнculo - bruxo00 - 14.04.2013

PHP код:
CMD:apagarcarro(playeridparams[])
{
    if(
IsPlayerAdmin(playerid))
    {
        new 
carid;
        new 
string[128];
        if(
sscanf(params"d"carid)) return SendClientMessage(playeridINFO,"[ USO: ] /apagarcarro [id do carro]");
        
format(stringsizeof(string), "Apagaste o carro com o id %d."carid);
        
SendClientMessage(playeridINFOstring);
        
DestroyVehicle(carid);
    }
    else
    {
         
SendClientMessage(playeridFAIL"[ ERRO: ] Tu nгo йs Administrador.");
    }
    return 
1;

Este comando apaga o veнculo pelo carro, que pode ver executando o comando /dl.

Este comando й para pessoas logadas na RCON, vai ter de mudar para o nнvel de admin que quer.


Re: Comando Deletar Veнculo - GustavinCTN - 14.04.2013

.........


Re: Comando Deletar Veнculo - iHarzard - 14.04.2013

Tenta assim:

pawn Код:
if (strcmp(cmd, "/dcv", true) == 0)
{
    if (PlayerInfo[playerid][pAdmin] >= 1 || PlayerInfo[playerid][pVip] >= 1)
    {
        for (new i = 0; i <= MAX_PLAYERS; i++)
        {
            if (IsPlayerConnected(i))
            {
                if (VehLimite[i] >= 1)
                {
                    DestroyVehicle(VehLimite[i]);
                    VehLimite[i] = 0;
                }
            }
        }
        SendClientMessage(playerid, COR_ERRO, "Veнculo Deletado!");
    }
    else
    {
        SendClientMessage(playerid, COR_ERRO, "Vocк nгo tem permissгo para usar este comando!");
        return 1;
    }
    return 1;
}



Re: Comando Deletar Veнculo - bruxo00 - 14.04.2013

O que eu te mandei, й mesmo disso. Podes estar a todas as distвncias do carro, tens й de saber o ID dele


Re: Comando Deletar Veнculo - GustavinCTN - 14.04.2013

Muito Obrigado aos 2