Vehicle help
#1

Can you help me to add location of car in the command of vstorage in dialog box?

Код:
CMD:vstorage(playerid, params[])
{
   	if(AdminDuty[playerid] == 1)
 	{
  		SendClientMessage(playerid,COLOR_WHITE, "You can't use this command while on-duty as admin.");
		return 1;
	}
	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{FFA500}Vehicle:{FFFFFF} %s {FFA500}| Status: {FFFFFF}Impounded", vstring, VehicleName[iModelID]);
			}
			else if(PlayerVehicleInfo[playerid][i][pvDisabled]) {
				format(vstring, sizeof(vstring), "%s\n{FFA500}Vehicle:{FFFFFF} %s {FFA500}| Status: {FFFFFF}Disabled", vstring, VehicleName[iModelID]);
			}
			else if(!PlayerVehicleInfo[playerid][i][pvSpawned]) {
				format(vstring, sizeof(vstring), "%s\n{FFA500}Vehicle:{FFFFFF} %s {FFA500}| Status: {FFFFFF}Stored", vstring, VehicleName[iModelID]);
			}
			else format(vstring, sizeof(vstring), "%s\n{FFA500}Vehicle:{FFFFFF} %s {FFA500}| Status: {FFFFFF}Spawned", vstring, VehicleName[iModelID]);
		}
		else strcat(vstring, "\nEmpty");
	}
	ShowPlayerDialogEx(playerid, VEHICLESTORAGE, DIALOG_STYLE_LIST, "Vehicle storage", vstring, "(De)spawn", "Cancel");
	return 1;
}
Reply


Messages In This Thread
Vehicle help - by firstlast488 - 21.03.2018, 10:42
Re: Vehicle help - by PowerMwK - 21.03.2018, 10:52
Re: Vehicle help - by firstlast488 - 21.03.2018, 10:57
Re: Vehicle help - by Hitropl - 21.03.2018, 10:59

Forum Jump:


Users browsing this thread: 1 Guest(s)