Page MenuHomeFeedback Tracker

[Feature request] (UI) Add another color(orange) for Gasoline label to Jerrycan for quick compare to water label(blue)
Reviewed, NormalPublic

Description

  1. May be change Gasoline color to Orange?
  2. May be change color for this bar (blue for Water, orange for Gasoline)?

Details

Severity
Feature
Resolution
Open
Reproducibility
N/A
Operating System
Windows 10 x64
Category
Feature Request

Event Timeline

PR9INICHEK added a subscriber: Geez.

@Geez hi :)

Please check this ticket

1.09.153372

Same

PR9INICHEK renamed this task from Water and Gasoline in Jerrycan have same color to [Feature request] (UI) Add another color(orange) for Gasoline label to Jerrycan for quick compare to water label(blue).Sep 26 2022, 7:30 PM
PR9INICHEK updated the task description. (Show Details)
PR9INICHEK added a comment.EditedOct 1 2022, 7:24 PM

I think that need add another color in 3_Game\DayZ\Colors.c like

const int COLOR_LIQUID 			= 0x0000EEFF;

And add changes in 5_Mission\DayZ\GUI\InspectMenuNew.c

case LIQUID_GASOLINE:
				{
					WidgetTrySetText(root_widget, "ItemLiquidTypeWidget", "#inv_inspect_gasoline", Colors.COLOR_LIQUID);
					break;
				}

Or you can just use Colors.ORANGE:


Geez changed the task status from New to Reviewed.Oct 16 2022, 7:18 PM

case LIQUID_GASOLINE:

				{
					WidgetTrySetText(root_widget, "ItemLiquidTypeWidget", "#inv_inspect_gasoline", Colors.ORANGE);
					break;
				}
JerseyD911 added a comment.EditedOct 17 2022, 10:32 AM

Works fine with just using "ORANGE" as a color

And maybe add this functional: