[Ajuda] Criar Um Comando /cv
#8

pawn Code:
new cmd[128],tmp[128],idx; cmd = strtok(cmdtext,idx);

if(strcmp(cmd, "/cv", true) == 0)
{
    if(VeiculoPlayer[playerid] >= 1)
    {
        SendClientMessage(playerid,0xBFBFBFAA,"Use /dcv.");
        return 1;
    }
    tmp = strtok(cmdtext,idx);

    if(!strlen(tmp))
    {
        SendClientMessage(playerid, 0xBFC0C2AA, "Uso Correto: /cv [Veiculo ID]");
        return 1;
    }
    new car = strval(tmp);

    if(car < 400 || car > 611)
    {
        SendClientMessage(playerid, 0xBFBFBFAA, "IDs de 400 a 611.");
        return 1;
    }
    new Float:X,Float:Y,Float:Z; GetPlayerPos(playerid, X,Y,Z);

    VeiculoPlayer[playerid] = CreateVehicle(car, X,Y,Z, 0.0, -1, -1,36000000);
    return 1;
}
if(strcmp(cmd, "/dcv", true) == 0)
{
    if(VeiculoPlayer[playerid] == 0)
    {
        SendClientMessage(playerid,0xBFBFBFAA,"Vocк nгo criou um veнculo!");
        return 1;
    }
    SendClientMessage(playerid,0xBFBFBFAA,"O seu veнculo Foi destruнdo!");

    DestroyVehicle(VeiculoPlayer[playerid]);
    VeiculoPlayer[playerid] = 0;

    return 1;
}
Reply


Messages In This Thread
Criar Um Comando /cv - by Catchorro - 27.10.2013, 03:01
Re: Criar Um Comando /cv - by BielCOP - 27.10.2013, 03:07
Re: Criar Um Comando /cv - by Catchorro - 27.10.2013, 04:02
Re: Criar Um Comando /cv - by BielCOP - 27.10.2013, 04:05
Re: Criar Um Comando /cv - by Catchorro - 27.10.2013, 04:07
Re: Criar Um Comando /cv - by BielCOP - 27.10.2013, 04:10
Re: Criar Um Comando /cv - by Catchorro - 27.10.2013, 04:18
Re: Criar Um Comando /cv - by BielCOP - 27.10.2013, 04:25
Re: Criar Um Comando /cv - by Catchorro - 27.10.2013, 04:27
Re: Criar Um Comando /cv - by BielCOP - 27.10.2013, 04:33

Forum Jump:


Users browsing this thread: 1 Guest(s)