SA-MP Forums Archive
Help! Some Errors on Compile - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help! Some Errors on Compile (/showthread.php?tid=343127)



Help! Some Errors on Compile - flaky9 - 16.05.2012

(11797) : error 029: invalid expression, assumed zero
(11797) : error 029: invalid expression, assumed zero
(11797) : warning 215: expression has no effect
(1179 : error 029: invalid expression, assumed zero

11797=>CreatedCars[CreatedCar] == carid;
11798=>CreatedCar ++;

Someone to help me ?
Код:
if(strcmp(cmd, "/veh", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
	        if (PlayerInfo[playerid][pAdmin] < 6)
			{
			    SendClientMessage(playerid, COLOR_GREY, "   you are not authorized to use that command!");
			    return 1;
			}
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GREY, "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_GREY, "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_GREY, "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;
	}



Re: Help! Some Errors on Compile - CoaPsyFactor - 16.05.2012

CreatedCars[CreatedCar] = carid not ==, and CreatedCar++ not " "++


Re: Help! Some Errors on Compile - flaky9 - 16.05.2012

Quote:
Originally Posted by CoaPsyFactor
Посмотреть сообщение
CreatedCars[CreatedCar] = carid not ==, and CreatedCar++ not " "++
After I delete a = from CreatedCars..i still have that error " error 029: invalid expression, assumed zero"


AW: Help! Some Errors on Compile - Drebin - 16.05.2012

Quote:
pawn Код:
CreatedCars[CreatedCar] == carid;
            CreatedCar ++; //
turns into
pawn Код:
CreatedCars[CreatedCar] = carid;
            CreatedCar++;



Re: AW: Help! Some Errors on Compile - flaky9 - 16.05.2012

Quote:
Originally Posted by Drebin
Посмотреть сообщение
turns into
pawn Код:
CreatedCars[CreatedCar] = carid;
            CreatedCar++;

Same Errors

(11797) error 029: invalid expression, assumed zero
(11797)warning 215: expression has no effect
(11798 ) : error 029: invalid expression, assumed zero

Help?:-s