Jump to content

Question

Posted

Salut. Am vrut sa adaug comanda in gm /veh dar mi-a dat 4 erori.

[pawn]    C:\Documents and Settings\alex\Desktop\ GF-RP\gamemodes\Quit.pwn(20531) : error 017: undefined symbol "CreatedCars"

    C:\Documents and Settings\alex\Desktop GF-RP\gamemodes\Quit.pwn(20531) : error 017: undefined symbol "CreatedCar"

    C:\Documents and Settings\alex\Desktop\ GF-RP\gamemodes\Quit.pwn(20531) : error 029: invalid expression, assumed zero

    C:\Documents and Settings\alex\Desktop\ GF-RP\gamemodes\Quit.pwn(20531) : fatal error 107: too many error messages on one line

    Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase

    4 Errors.[/pawn]

am schimbat CreatedCar si CreateCars cu Veh dar la fel

Uitati comanda.

[pawn]

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

    {

        if(IsPlayerConnected(playerid))

        {

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

          {

              SendClientMessage(playerid, 0xA8A8FFFF, "  Ne pare rau , dar tu nu ai accesul la comanda aceasta !");

              return 1;

          }

          tmp = strtok(cmdtext, idx);

          if(!strlen(tmp))

          {

              SendClientMessage(playerid, COLOR_GRAD2, "Type / Scrie: /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, "Type / Scrie: /veh [carid] [color1] [color2]");

              return 1;

          }

          new color1;

          color1 = strval(tmp);

          if(color1 < 0 || color1 > 126) { SendClientMessage(playerid, COLOR_GREY, "  Culoarea trebe sa fie intre 0 si 126 !"); return 1; }

          tmp = strtok(cmdtext, idx);

          if(!strlen(tmp))

          {

              SendClientMessage(playerid, COLOR_GRAD2, "Type / Scrie: /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 +3,Z, 0.0, color1, color2, 60000);

          CreatedCars[CreatedCar] = carid;

          CreatedCar ++;

          format(string, sizeof(string), "Ai spawnat masina cu id %d ", carid);

          SendClientMessage(playerid, COLOR_GREY, string);

        }

        return 1;

    }[/pawn]

7 answers to this question

Recommended Posts

Posted

In loc de CreatedCars si CreatedCar scrie CreateCars si CreateCar,vezi tot aceleasi erori iti da?

 

 

Posted

mi-a dat 4 erori

[pawn]

C:\Documents and Settings\alex\Desktop\samp03\gamemodes\Quit.pwn(20548) : error 017: undefined symbol "CreateCars"

C:\Documents and Settings\alex\Desktop\samp03\gamemodes\Quit.pwn(20548) : error 017: undefined symbol "CreateCar"

C:\Documents and Settings\alex\Desktop\samp03\gamemodes\Quit.pwn(20548) : error 029: invalid expression, assumed zero

C:\Documents and Settings\alex\Desktop\samp03\gamemodes\Quit.pwn(20548) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase

4 Errors.

[/pawn]

Posted

[pawn]C:\DOCUME~1\alex\Desktop\samp03\GAMEMO~1\Quit.pwn(20604) : error 028: invalid subscript (not an array or too many subscripts): "JBC_CreateVehicle"

C:\DOCUME~1\alex\Desktop\samp03\GAMEMO~1\Quit.pwn(20604) : error 076: syntax error in the expression, or invalid function call

C:\DOCUME~1\alex\Desktop\samp03\GAMEMO~1\Quit.pwn(20604) : error 029: invalid expression, assumed zero

C:\DOCUME~1\alex\Desktop\samp03\GAMEMO~1\Quit.pwn(20604) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase

4 Errors.

[/pawn]

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.