Vehicle Storage Problem
#1

Hello there. My vehicle storage system dosent work as it could.
When i do /vstorage is shows the vehicles as stored.

And when i do /vstorage and try to store and destore them it dosent work.
Could some one help me?

Код:
#define VSTORAGE 19104
Код:
CMD:vstorage(playerid, params[])
{
	new vstring[1024];
	for(new i, iModelID; i < MAX_PLAYERVEHICLES; i++) {
		if((iModelID = PlayerVehicleInfo[playerid][i][pvModelId] - 400) >= 0) {
			if(PlayerVehicleInfo[playerid][i][pvImpounded]) {
				format(vstring, sizeof(vstring), "%s\n%s (impounded)", vstring, VehicleName[iModelID]);
			}
			else if(PlayerVehicleInfo[playerid][i][pvDisabled]) {
				format(vstring, sizeof(vstring), "%s\n%s (disabled)", vstring, VehicleName[iModelID]);
			}
			else if(!PlayerVehicleInfo[playerid][i][pvSpawned]) {
				format(vstring, sizeof(vstring), "%s\n%s (stored)", vstring, VehicleName[iModelID]);
			}
			else format(vstring, sizeof(vstring), "%s\n%s (spawned)", vstring, VehicleName[iModelID]);
		}
		else strcat(vstring, "\nEmpty");
	}
	ShowPlayerDialog(playerid, VSTORAGE, DIALOG_STYLE_LIST, "Vehicle storage", vstring, "(De)spawn", "Cancel");
	return 1;
}
Reply


Messages In This Thread
Vehicle Storage Problem - by eclipses - 11.10.2012, 13:36
Re: Vehicle Storage Problem - by Red_Dragon. - 11.10.2012, 13:45
Re: Vehicle Storage Problem - by eclipses - 11.10.2012, 13:49
Re: Vehicle Storage Problem - by Red_Dragon. - 11.10.2012, 13:51
Re: Vehicle Storage Problem - by eclipses - 11.10.2012, 14:09
Re: Vehicle Storage Problem - by Red_Dragon. - 11.10.2012, 14:27
Re: Vehicle Storage Problem - by eclipses - 12.10.2012, 01:29

Forum Jump:


Users browsing this thread: 1 Guest(s)