#1

Yo All
Ive this /veh cmd here


Код:
	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;
	}
But its gave me this:
error 017: undefined symbol "CreatedCar"
error 017: undefined symbol "CreatedCar"
warning 215: expression has no effect



What to do guys?
Reply
#2

Define it.

pawn Код:
new CreatedCar[MAX_PLAYERS];
Reply
#3

C:\Documents and Settings\Administrator\щемзп дтбегд\Logic Roleplay\gamemodes\Logic.Roleplay.pwn(2888 : error 033: array must be indexed (variable "CreatedCar")
C:\Documents and Settings\Administrator\щемзп дтбегд\Logic Roleplay\gamemodes\Logic.Roleplay.pwn(28889) : error 022: must be lvalue (non-constant)
C:\Documents and Settings\Administrator\щемзп дтбегд\Logic Roleplay\gamemodes\Logic.Roleplay.pwn(28889) : warning 215: expression has no effect


o.O

What to do now?
Reply
#4

Help me?
Please guys!
I so need it!
Reply
#5

Cause it's gf.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)