Page MenuHomeFeedback Tracker

[Feature Request] Custom difficulty settings
New, NormalPublic

Description

Like custom controls (CfgUserActions), I suggest some config to make custom/modded difficulty settings.

e.g.:

class CfgUserGameOptions
{
	class PLP_OptionAlpha
	{
		displayName = "Option Alpha";
		tooltip = "bla bla...";
		type = "Slider";    // Slider, Combo(box), Checkbox. Maybe more?
		default = 1;
	};
	class PLP_OptionBravo: PLP_OptionAlpha
	{
		displayName = "Option Bravo";
		type = "Combo";
		class Items
		{
			class DefaultVariable
			{
				displayName = "A";
				tooltip = "A";
				data = "A";
			};
			class SecondVariable: DefaultVariable
			{
				displayName = "B";
				tooltip = "B";
				data = "B";
			};
			/* And so on... */
		};
	};
};

And those configs can be fetched by some commands like getDifficultyOption.

Details

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

Event Timeline

POLPOX created this task.Jul 23 2021, 4:34 AM
dedmen added a subscriber: dedmen.Jan 10 2023, 5:31 PM

This is unlikely, the difficulty system dates back alot of years and is thus not easily extended