[Ajuda] Comando Deletar Veнculo
#1

Jб consegui jб.
Reply
#2

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.
Reply
#3

.........
Reply
#4

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;
}
Reply
#5

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

Muito Obrigado aos 2
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)