SA-MP Forums Archive
How to add color like this please click me to see! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: How to add color like this please click me to see! (/showthread.php?tid=504290)



How to add color like this please click me to see! - Lloyde - 03.04.2014

How to add color the Vehicle and Status like this sir





Код:
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\nVehicle: %s | Status: [Impounded]", vstring, VehicleName[iModelID]);
			}
			else if(PlayerVehicleInfo[playerid][i][pvDisabled]) {
				format(vstring, sizeof(vstring), "%s\nVehicle: %s | Status: [disabled]", vstring, VehicleName[iModelID]);
			}
			else if(!PlayerVehicleInfo[playerid][i][pvSpawned]) {
				format(vstring, sizeof(vstring), "%s\nVehicle: %s | Status: [stored]", vstring, VehicleName[iModelID]);
			}
			else format(vstring, sizeof(vstring), "%s\nVehicle: %s | Status: [spawned]", vstring, VehicleName[iModelID]);
		}
		else strcat(vstring, "\nEmpty");
	}
	ShowPlayerDialogEx(playerid, VEHICLESTORAGE, DIALOG_STYLE_LIST, "Vehicle storage", vstring, "(De)spawn", "Cancel");
	return 1;
}



Re : How to add color like this please click me to see! - Clad - 03.04.2014

It's 0.3c colors like this {FFFFFF}
you can also use "COL_ORANGE"


Re: How to add color like this please click me to see! - Lloyde - 03.04.2014

where can i place that sir


Re: How to add color like this please click me to see! - iThePunisher - 03.04.2014

change it to this
pawn Код:
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{FFE135}Vehicle:{FFFFFF} %s | {FFE135}Status: {FFFFFF}[Impounded]", vstring, VehicleName[iModelID]);
            }
            else if(PlayerVehicleInfo[playerid][i][pvDisabled]) {
                format(vstring, sizeof(vstring), "%s\n{FFE135}Vehicle:{FFFFFF} %s | {FFE135}Status:{FFFFFF} [disabled]", vstring, VehicleName[iModelID]);
            }
            else if(!PlayerVehicleInfo[playerid][i][pvSpawned]) {
                format(vstring, sizeof(vstring), "%s\n{FFE135}Vehicle: {FFFFFF}%s | {FFE135}Status:{FFFFFF} [stored]", vstring, VehicleName[iModelID]);
            }
            else format(vstring, sizeof(vstring), "%s\n{FFE135}Vehicle: {FFFFFF}%s | {FFE135}Status:{FFFFFF} [spawned]", vstring, VehicleName[iModelID]);
        }
        else strcat(vstring, "\nEmpty");
    }
    ShowPlayerDialogEx(playerid, VEHICLESTORAGE, DIALOG_STYLE_LIST, "Vehicle storage", vstring, "(De)spawn", "Cancel");
    return 1;
}



Re: How to add color like this please click me to see! - Bingo - 03.04.2014

Those colour codes are used in HTML like this #FFFFFF but we can also use it in C++ by remove '#' and add brackets at start and end {FFFFFF}.

For more colours CLICK HERE