Vehicle storage bugg
#1

Hello there, i have a problem with my vehicle storage system.
Could anyone assist me it would be great. Thanks.


Pawno compile errors

Код:
C:\Users\Nick\Desktop\Nick's Ser\gamemodes\AMRP.pwn(47333) : error 029: invalid expression, assumed zero
C:\Users\Nick\Desktop\Nick's Ser\gamemodes\AMRP.pwn(47333) : warning 215: expression has no effect
C:\Users\Nick\Desktop\Nick's Ser\gamemodes\AMRP.pwn(47333) : warning 215: expression has no effect
C:\Users\Nick\Desktop\Nick's Ser\gamemodes\AMRP.pwn(47333) : warning 215: expression has no effect
C:\Users\Nick\Desktop\Nick's Ser\gamemodes\AMRP.pwn(47333) : warning 215: expression has no effect
C:\Users\Nick\Desktop\Nick's Ser\gamemodes\AMRP.pwn(47333) : warning 215: expression has no effect
C:\Users\Nick\Desktop\Nick's Ser\gamemodes\AMRP.pwn(47333) : error 001: expected token: ";", but found ")"
C:\Users\Nick\Desktop\Nick's Ser\gamemodes\AMRP.pwn(47333) : error 029: invalid expression, assumed zero
C:\Users\Nick\Desktop\Nick's Ser\gamemodes\AMRP.pwn(47333) : fatal error 107: too many error messages on one line

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


4 Errors.
Vehicle Storage system

Код:
CMD:vstorage(playerid, params[])
{
	new vstring[1024];
	for(new i; i < MAX_PLAYERVEHICLES; i++)
	{
		if(PlayerVehicleInfo[playerid][i][pvId] > INVALID_PLAYER_VEHICLE_ID)
			format(vstring, sizeof(vstring), "%s\n%s", vstring, VehicleName[PlayerVehicleInfo[playerid][i][pvModelId] - 400]);

		else if(PlayerVehicleInfo[playerid][i][pvImpounded] == 1)
			format(vstring, sizeof(vstring), "%s\n%s (impounded)", vstring, VehicleName[PlayerVehicleInfo[playerid][i][pvModelId] - 400]);

		else
		format(vstring, sizeof(vstring), "%s\nEmpty", vstring);
	}
	ShowPlayerDialog(playerid, VSTORAGE, DIALOG_STYLE_LIST, "OnStar Vehicle Storage", vstring, "(UN)Store", "Cancel");
	return 1;
}
Redmarked the problem line.
Reply


Messages In This Thread
Vehicle storage bugg - by eclipses - 11.10.2012, 08:30
Re: Vehicle storage bugg - by eclipses - 11.10.2012, 08:34
Re: Vehicle storage bugg - by zSuYaNw - 11.10.2012, 08:36
Re: Vehicle storage bugg - by eclipses - 11.10.2012, 08:37
Re: Vehicle storage bugg - by eclipses - 11.10.2012, 08:39
Re: Vehicle storage bugg - by Riddick94 - 11.10.2012, 08:42
Re: Vehicle storage bugg - by eclipses - 11.10.2012, 08:43
Re: Vehicle storage bugg - by gtakillerIV - 11.10.2012, 08:43
Re: Vehicle storage bugg - by Riddick94 - 11.10.2012, 08:45
Re: Vehicle storage bugg - by eclipses - 11.10.2012, 08:46

Forum Jump:


Users browsing this thread: 1 Guest(s)