Car command dcmd
#7

Ok i made it but i have errors

Код:
C:\Documents and Settings\user\Desktop\server samp\gamemodes\Stunt.pwn(270) : error 017: undefined symbol "car"
C:\Documents and Settings\user\Desktop\server samp\gamemodes\Stunt.pwn(274) : error 017: undefined symbol "red"
C:\Documents and Settings\user\Desktop\server samp\gamemodes\Stunt.pwn(276) : error 017: undefined symbol "IsNumeric"
C:\Documents and Settings\user\Desktop\server samp\gamemodes\Stunt.pwn(276) : error 017: undefined symbol "GetVehicleModelIDFromName"
C:\Documents and Settings\user\Desktop\server samp\gamemodes\Stunt.pwn(277) : error 017: undefined symbol "red"
C:\Documents and Settings\user\Desktop\server samp\gamemodes\Stunt.pwn(280) : error 017: undefined symbol "PlayerInfo"
C:\Documents and Settings\user\Desktop\server samp\gamemodes\Stunt.pwn(280) : warning 215: expression has no effect
C:\Documents and Settings\user\Desktop\server samp\gamemodes\Stunt.pwn(280) : error 001: expected token: ";", but found "]"
C:\Documents and Settings\user\Desktop\server samp\gamemodes\Stunt.pwn(280) : error 029: invalid expression, assumed zero
C:\Documents and Settings\user\Desktop\server samp\gamemodes\Stunt.pwn(280) : fatal error 107: too many error messages on one line

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


9 Errors.
The command

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
	dcmd_car(car,3,cmdtext);
}
    dcmd_car(playerid,params[]) {
	    new tmp[256], tmp2[256], tmp3[256], Index; tmp = strtok(params,Index), tmp2 = strtok(params,Index); tmp3 = strtok(params,Index);
	    if(!strlen(tmp)) return SendClientMessage(playerid, red, "USAGE: /car [Modelid/Name] [colour1] [colour2]");
		new car, colour1, colour2, string[128];
   		if(!IsNumeric(tmp)) car = GetVehicleModelIDFromName(tmp); else car = strval(tmp);
		if(car < 400 || car > 611) return  SendClientMessage(playerid, red, "ERROR: Invalid Vehicle Model");
		if(!strlen(tmp2)) colour1 = random(126); else colour1 = strval(tmp2);
		if(!strlen(tmp3)) colour2 = random(126); else colour2 = strval(tmp3);
		if(PlayerInfo[playerid][pCar] != -1 && !IsPlayerAdmin(playerid) ) CarDeleter(PlayerInfo[playerid][pCar]);
		new LVehicleID,Float:X,Float:Y,Float:Z, Float:Angle,int1;	GetPlayerPos(playerid, X,Y,Z);	GetPlayerFacingAngle(playerid,Angle);   int1 = GetPlayerInterior(playerid);
		VehicleID = CreateVehicle(car, X+3,Y,Z, Angle, colour1, colour2, -1); LinkVehicleToInterior(LVehicleID,int1);
		PlayerInfo[playerid][pCar] = LVehicleID;
		format(string, sizeof(string), "%s spawned a \"%s\" (Model:%d) colour (%d, %d), at %0.2f, %0.2f, %0.2f", pName(playerid), VehicleNames[car-400], car, colour1, colour2, X, Y, Z);
        SaveToFile("CarSpawns",string);
		format(string, sizeof(string), "You have spawned a \"%s\" (Model:%d) colour (%d, %d)", VehicleNames[car-400], car, colour1, colour2);
		return SendClientMessage(playerid,lightblue, string);
	} else return SendClientMessage(playerid,red,"ERROR: You need to be level 3 to use this command");
}
    return 0;
}
Reply


Messages In This Thread
Car command dcmd - by IvancheBG - 06.06.2011, 17:32
Re: Car command dcmd - by Wesley221 - 06.06.2011, 17:33
Re: Car command dcmd - by IvancheBG - 06.06.2011, 17:36
Re: Car command dcmd - by iFriSki - 06.06.2011, 17:36
Re: Car command dcmd - by IvancheBG - 06.06.2011, 17:38
Re: Car command dcmd - by IvancheBG - 06.06.2011, 17:44
Re: Car command dcmd - by IvancheBG - 06.06.2011, 17:55
Re: Car command dcmd - by Iphone1234g - 06.06.2011, 17:58
Re: Car command dcmd - by IvancheBG - 06.06.2011, 18:05
Re: Car command dcmd - by IvancheBG - 07.06.2011, 07:24

Forum Jump:


Users browsing this thread: 1 Guest(s)