Jump to content

Question

Posted

Salut am o problema la comanda /veh imi da niste erori

Comanda

Code: [select]

    if(strcmp(cmd, "/veh", true) == 0)

    {

        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);

            CreatedCars[CreatedCar] = carid;

            CreatedCar ++;

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

            SendClientMessage(playerid, COLOR_GREY, string);

        }

        return 1;

    }

si aici erorile

Code: [select]

C:\DOCUME~1\ADMINI~1\Desktop\ICEZV0~1.1\GAMEMO~1\larp.pwn(28829) : error 017: undefined symbol "CreatedCar"

C:\DOCUME~1\ADMINI~1\Desktop\ICEZV0~1.1\GAMEMO~1\larp.pwn(28830) : error 017: undefined symbol "CreatedCar"

C:\DOCUME~1\ADMINI~1\Desktop\ICEZV0~1.1\GAMEMO~1\larp.pwn(28830) : warning 215: expression has no effect

Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase

Am cautat ,unii ziceau ca trebuia sa adaug createcar=0; dar nu merge

Va rog o explicatie mai amanuntita daca puteti

mersi

Dac? cer ajutor,înseamn? c? chiar am nevoie!

Basarabia e România!

2 answers to this question

Recommended Posts

Posted

Poftim comanda /veh -> /car:

[pawn]if(strcmp(cmd, "/car", true) == 0)

{

    new carid;

    if(IsPlayerConnected(playerid))

    {

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

{

    SendClientMessage(playerid, COLOR_GRAD1, "  nu esti autorizat sa folosesti aceasta comanda!");

    return 1;

}

            if(IsPlayerConnected(playerid))

    {

tmp = strtok(cmdtext, idx);

if(!strlen(tmp))

{

SendClientMessage(playerid, COLOR_YELLOW2, "Use: /car [carid] [color1] [color2]");

return 1;

}

new car;

car = strval(tmp);

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

tmp = strtok(cmdtext, idx);

if(!strlen(tmp))

{

SendClientMessage(playerid, COLOR_YELLOW2, "Use: /car [carid] [color1] [color2]");

return 1;

}

new color1;

color1 = strval(tmp);

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

tmp = strtok(cmdtext, idx);

if(!strlen(tmp))

{

SendClientMessage(playerid, COLOR_YELLOW2, "Use: /car [carid] [color1] [color2]");

return 1;

}

new color2;

color2 = strval(tmp);

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

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

GetPlayerPos(playerid, X,Y,Z);

carid = CreateVehicle(car, X,Y +4,Z, 0.0, color1, color2, 6000000000000);

PutPlayerInVehicle(playerid,carid,0);

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

SendClientMessage(playerid, COLOR_BLUE, string);

}

return 1;

}

return 1;

}[/pawn]

Rareori ne gândim la ceea ce avem, dar mereu la ceea ce ne lipseşte

Posted

meri darksone

doar ca am si un script de masini personale,si cind dau car intru in masinina imi scrie ca trebuie sa o cumpar

Dac? cer ajutor,înseamn? c? chiar am nevoie!

Basarabia e România!

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.