Hello.
So that you can change the values for (Vip or Elite) yourself, you can change the following values in the plugin.
Find the following lines in the plugin.
For vip.
var VIPDamage = HeadCondition / 2;
And let's say so.
var VIPDamage = HeadCondition / 3.0f;
This will mean that the armor will take damage divided by 3.0, which is approximately 25% of the damage dealt to the player.
The same goes for the Elite group.
Find the following lines in the plugin.
For Elite.
var ELITEDamage = HeadCondition / 3;
And let's say so.
var ELITEDamage = HeadCondition / 3.5f;
This will mean that for an Elite group, the armor will take damage divided by 3.5, which is approximately 20% of the damage dealt to the player.
I believe that the essence will be clear to you.
In the plugin, you will need to change not one line, but several.
Merged postSo that you can change the values for (Vip or Elite) yourself i added the following settings to the config file.
"Armor damage splitter for VIP group": 2.0,
This will mean that the armor will take damage divided by 2.0, which is approximately 50% of the damage dealt to the player.
"Armor damage splitter for ELITE group": 3.0,
This will mean that the armor will take damage divided by 3.0, which is approximately 25% of the damage dealt to the player.
Armor Not Forever "1.0.7"