Arma 3
Not enough ratings
FireSupport+ AVON FM12 Compatibility Addon
   
Award
Favorite
Favorited
Unfavorite
Data Type: Mod
Mod Type: Character, Equipment
File Size
Posted
Updated
5.654 KB
30 Dec, 2022 @ 6:16am
30 Dec, 2022 @ 6:33am
2 Change Notes ( view )

Subscribe to download
FireSupport+ AVON FM12 Compatibility Addon

Description
Small mod to make AVON FM12 compatible with FireSupport+ chemical warfare
3 Comments
Phenosi 24 Jul, 2024 @ 12:53am 
@Salém I had to take a quick look into it and yeah- the way you were doing it completely overwrote the item class instead of inheriting it and then adding just the chemical part, so I rewrote it a bit.

Example:
[code]
class cfgPatches
{
class CBRN_Compat_Facewear_FM12
{
requiredAddons[]=
{
"fm12_respirator"
};
// Optional. If this is 1, if any of requiredAddons[] entry is missing in your game the entire config will be ignored and return no error (but in rpt) so useful to make a compat Mod (Since Arma 3 2.14)
skipWhenMissingDependencies = 1;
units[] = {};
weapons[]={};
};
};

class cfgGlasses
{
class None;
class avon_fm12: None
{
CBRN_protectionLevel = "1 + 2";
CBRN_overlayType="CBRN_gear\data\hud\overlay_style_round.paa";
};
};
[/code]
Salém  [author] 23 Jul, 2024 @ 1:01pm 
i'm not sure if it even works anymore lmao
but sure, feel free to do anything you want
Phenosi 23 Jul, 2024 @ 6:32am 
You don't mind if I take this to integrate it into the new mod right?