-
Member
How to remove player's bottom "Focus ring" and "Restraint ring" buffer icon ?
Hi gusy,
How to remove player's bottom "Focus ring" and "Restraint ring" buffer icon ?
icon.png
-
Legendary
These icons are shown by the PlayerBottomBuffListPlugin.cs plugin and include 3 rules: taeguk, focus, restraint .
You have several options:
1) The first is to completely disable the plugin:
Code:
Hud.TogglePlugin<PlayerBottomBuffListPlugin>(false);
2 ) Empty the list of predefined rules (the 3 mentioned) of that plugin
Code:
Hud.RunOnPlugin<PlayerBottomBuffListPlugin>(plugin => {
plugin.RuleCalculator.Rules.Clear();
} );
3) or, edit the plugin and delete the rules that do not interest you, but you should do it in each new version
note: the code must be added to the custom section of user\PluginEnablerOrDisablerPlugin.cs
Last edited by RNN; 05-16-2019 at 08:51 AM.
-
Post Thanks / Like - 2 Thanks
-
Member