[Ajuda] Criar Um Comando /cv
#10

pawn Code:
new cmd[168];
new tmp[168];
new 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;
}

// Fim do gm

strtok(const string[], &index)
{
    new length = strlen(string);

    while ((index < length) && (string[index] <= ' '))
    {
        index++;
    }
 
    new offset = index;
    new result[20];

    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }
    result[index - offset] = EOS;
    return result;
}
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)