I'd like to request a variable flag that would disable Flag Display and Flag Hide actions, so I can control forced flag textures through my own scripts (and also declutter action menu a little bit)
Description
Description
Details
Details
- Severity
- Feature
- Resolution
- Open
- Reproducibility
- N/A
- Operating System
- Windows 10 x64
- Category
- Config
Additional Information
Suggested fix, change flag_display and flag_hide action configs, from:
condition = "(getForcedFlagTexture this == """") AND (driver this == player) AND (alive this)";
to
condition = "(getForcedFlagTexture this == """") AND (driver this == player) AND (alive this) AND !(this getVariable ['vn_flag_hide_actions', false])";
this way I would be able to set vn_flag_hide_actions entity variable to true and have no actions.