Jump to content

Question

Posted

Salut.Am si eu o intrebare, ce este gresit in comanda asta ?

[pawn]CMD:veh(playerid, params[])

{

    if(IsPlayerConnected(playerid))

    {if (PlayerInfo[playerid][pAdmin] < 4)

{

    SendClientMessage(playerid, COLOR_GRAD1, "  you are not authorized to use that command!");

    return 1;

}

tmp = strtok(cmdtext, idx);

if(!strlen(tmp))

{

SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");

return 1;

}

new car;

car = strval(tmp);

if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, "  Vehicle Number can't be below 400 or above 611 !"); return 1; }

tmp = strtok(cmdtext, idx);

if(!strlen(tmp))

{

SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");

return 1;

}

new color1;

color1 = strval(tmp);

if(color1 < 0 || color1 > 126) { SendClientMessage(playerid, COLOR_GREY, "  Color Number can't be below 0 or above 126 !"); return 1; }

tmp = strtok(cmdtext, idx);

if(!strlen(tmp))

{

SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");

return 1;

}

new color2;

color2 = strval(tmp);

if(color2 < 0 || color2 > 126) { SendClientMessage(playerid, COLOR_GREY, "  Color Number can't be below 0 or above 126 !"); return 1; }

new Float:X,Float:Y,Float:Z;

GetPlayerPos(playerid, X,Y,Z);

new carid = CreateVehicle(car, X,Y,Z, 0.0, color1, color2, 60000);

//CreateVehicle ++;

format(string, sizeof(string), "  Vehicle %d spawned.", carid);

SendClientMessage(playerid, COLOR_GREY, string);

}

return 1;

}

[/pawn]

Deci nu imi da erori la compilare, nimic, dar cand intru in joc si scrie de exemplu /veh 522 0 0, imi da mesajul USAGE: /veh [carid] [color1] [color2].Asta mi se intampla la inca vreo 3 comenzi pe care le-am adaugat, si nu stiu de ce.

1 answer to this question

Recommended Posts

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.