CBRN – Arma 3
Lou Montana (talk | contribs) m (Some wiki formatting) |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 18: | Line 18: | ||
===== Combination Unit Respirator ===== | ===== Combination Unit Respirator ===== | ||
<sqf> | <sqf> | ||
// | // visibility of the common hose segment | ||
(backpackContainer this) setObjectTexture [1, ""]; // | (backpackContainer this) setObjectTexture [1, ""]; // hide hose segment | ||
(backpackContainer this) setObjectTexture [1, "a3\supplies_f_enoch\bags\data\b_cur_01_co.paa"]; // | (backpackContainer this) setObjectTexture [1, "a3\supplies_f_enoch\bags\data\b_cur_01_co.paa"]; // show hose segment | ||
// | // visibility of a hose segment intended for the NATO APR (recommended combination) | ||
(backpackContainer this) setObjectTexture [2, ""]; // | (backpackContainer this) setObjectTexture [2, ""]; // hide | ||
(backpackContainer this) setObjectTexture [2, "a3\supplies_f_enoch\bags\data\b_cur_01_co.paa"]; // | (backpackContainer this) setObjectTexture [2, "a3\supplies_f_enoch\bags\data\b_cur_01_co.paa"]; // show | ||
this linkItem "G_AirPurifyingRespirator_01_nofilter_F"; // | this linkItem "G_AirPurifyingRespirator_01_nofilter_F"; // replacing a NATO APR with filter for a version without filter | ||
// | // visibility of a hose segment intended for the Regulator Facepiece | ||
(backpackContainer this) setObjectTexture [3, ""]; // | (backpackContainer this) setObjectTexture [3, ""]; // hide | ||
(backpackContainer this) setObjectTexture [3, "a3\supplies_f_enoch\bags\data\b_cur_01_co.paa"]; // | (backpackContainer this) setObjectTexture [3, "a3\supplies_f_enoch\bags\data\b_cur_01_co.paa"]; // show | ||
// | // showing an insignia on the CUR | ||
(backpackContainer this) setObjectTexture [4, "\A3\ui_f\data\logos\bi_white_ca.paa"]; // | (backpackContainer this) setObjectTexture [4, "\A3\ui_f\data\logos\bi_white_ca.paa"]; // replace the texture by any insignia texture path | ||
</sqf> | </sqf> | ||
===== Self-Contained Breathing Apparatus ===== | ===== Self-Contained Breathing Apparatus ===== | ||
<sqf> | <sqf> | ||
// | // visibility of a hose segment intended for the Regulator Facepiece (recommended combination) | ||
(backpackContainer this) setObjectTexture [2, ""]; // | (backpackContainer this) setObjectTexture [2, ""]; // hide hose segment | ||
(backpackContainer this) setObjectTexture [2, "a3\supplies_f_enoch\bags\data\b_scba_01_co.paa"]; // | (backpackContainer this) setObjectTexture [2, "a3\supplies_f_enoch\bags\data\b_scba_01_co.paa"]; // show hose segment | ||
// | // visibility of a hose segment intended for the NATO APR | ||
(backpackContainer this) setObjectTexture [1, ""]; // | (backpackContainer this) setObjectTexture [1, ""]; // hide | ||
(backpackContainer this) setObjectTexture [1, "a3\supplies_f_enoch\bags\data\b_scba_01_co.paa"]; // | (backpackContainer this) setObjectTexture [1, "a3\supplies_f_enoch\bags\data\b_scba_01_co.paa"]; // show | ||
</sqf> | </sqf> | ||
===== Common Combinations ===== | ===== Common Combinations ===== | ||
{| class="wikitable" | {| class="wikitable" | ||
!Item(s) | ! Item(s) | ||
!Preview | ! Preview | ||
! | ! Classes | ||
!Sample Code | ! Sample Code | ||
|- | |- | ||
| | | | ||
* Combination Unit Respirator | * Combination Unit Respirator | ||
* APR [NATO] | * APR [NATO] | ||
| | | | ||
<gallery> | <gallery> | ||
File:Contact CUR NATO APR.jpg|CUR with NATO APR attached | File:Contact CUR NATO APR.jpg|CUR with NATO APR attached | ||
</gallery> | </gallery> | ||
| | |||
B_CombinationUnitRespirator_01_F | |||
G_AirPurifyingRespirator_01_F | |||
| | | | ||
<sqf> | <sqf> | ||
Line 70: | Line 70: | ||
</sqf> | </sqf> | ||
|- | |- | ||
| | |||
* Self-Contained Breathing Apparatus | * Self-Contained Breathing Apparatus | ||
* Regulator Facepiece | * Regulator Facepiece | ||
| | |||
<gallery> | <gallery> | ||
File:Contact SCBA Regulator Facepiece.jpg|SCBA with Regulator Facepiece attached | File:Contact SCBA Regulator Facepiece.jpg|SCBA with Regulator Facepiece attached | ||
</gallery> | </gallery> | ||
| | |||
B_SCBA_01_F | |||
G_RegulatorMask_F | |||
| | | <sqf>(backpackContainer this) setObjectTexture [2, "a3\supplies_f_enoch\bags\data\b_scba_01_co.paa"];</sqf> | ||
<sqf> | |||
(backpackContainer this) setObjectTexture [2, "a3\supplies_f_enoch\bags\data\b_scba_01_co.paa"]; | |||
</sqf> | |||
|} | |} | ||
Other combinations are possible, but not all of them would be ideal in the real world: | Other combinations are possible, but not all of them would be ideal in the real world: | ||
Line 91: | Line 88: | ||
* NATO / CSAT APRs can of course be worn without any Backpack (filters attached). | * NATO / CSAT APRs can of course be worn without any Backpack (filters attached). | ||
* The Regular Facepiece should not be worn without Backpack. | * The Regular Facepiece should not be worn without Backpack. | ||
* The CSAT APR doesn't need and was not designed to connect to the SCBA / CUR (As CSAT Combat Fatigue has already built-in “air-conditioning” units, and wearing both of Fatigue and APR is CBRN-protected ''canonically'' {{ | * The CSAT APR doesn't need and was not designed to connect to the SCBA / CUR (As CSAT Combat Fatigue has already built-in “air-conditioning” units, and wearing both of Fatigue and APR is CBRN-protected ''canonically'' {{Link|https://forums.bohemia.net/forums/topic/223445-contact-expansion-asset-feedback/?tab{{=}}comments#comment-3358042|Source}}). | ||
Line 102: | Line 99: | ||
</sqf> | </sqf> | ||
{| class="wikitable" | {| class="wikitable" | ||
!Item(s) | ! Item(s) | ||
! | ! Preview | ||
!Class(es) | ! Class(es) | ||
!Overlay Class | ! Overlay Class | ||
|- | |- | ||
| | | | ||
* APR [NATO] | * APR [NATO] | ||
| | |||
<gallery> | <gallery> | ||
File:Contact NATO APR Black.jpg|APR [NATO] | File:Contact NATO APR Black.jpg|APR [NATO] | ||
</gallery> | </gallery> | ||
| | | | ||
G_AirPurifyingRespirator_01_F | |||
G_AirPurifyingRespirator_01_nofilter_F (protected scope) | |||
| | | | ||
"RscCBRN_APR" | |||
|- | |- | ||
| | |||
* APR (Black) [CSAT] | * APR (Black) [CSAT] | ||
* APR (Olive) [CSAT] | * APR (Olive) [CSAT] | ||
* APR (Sand) [CSAT] | * APR (Sand) [CSAT] | ||
| | |||
<gallery> | <gallery> | ||
File:Contact CSAT APR Black.jpg|APR (Black) [CSAT] | File:Contact CSAT APR Black.jpg|APR (Black) [CSAT] | ||
Line 128: | Line 126: | ||
File:Contact CSAT APR Sand.jpg|APR (Sand) [CSAT] | File:Contact CSAT APR Sand.jpg|APR (Sand) [CSAT] | ||
</gallery> | </gallery> | ||
| | |||
G_AirPurifyingRespirator_02_black_F | |||
G_AirPurifyingRespirator_02_olive_F | |||
G_AirPurifyingRespirator_02_sand_F | |||
| | | | ||
"RscCBRN_APR_02" | |||
|- | |- | ||
| | |||
* Regulator Facepiece | * Regulator Facepiece | ||
| | |||
<gallery> | <gallery> | ||
File:Contact Regulator Facepiece.jpg|Regulator Facepiece | File:Contact Regulator Facepiece.jpg|Regulator Facepiece | ||
</gallery> | </gallery> | ||
| | |||
G_RegulatorMask_F | |||
| | | | ||
"RscCBRN_Regulator" | |||
|- | |- | ||
| | |||
Blindfold (Black) | |||
Blindfold (White) | |||
| | |||
<gallery> | <gallery> | ||
File:Contact Blindfold Black.jpg|Blindfold (Black) | File:Contact Blindfold Black.jpg|Blindfold (Black) | ||
File:Contact Blindfold White.jpg|Blindfold (White) | File:Contact Blindfold White.jpg|Blindfold (White) | ||
</gallery> | </gallery> | ||
| | |||
G_Blindfold_01_black_F | |||
G_Blindfold_01_white_F | |||
| | | | ||
"RscBlindfold" | |||
|} | |} | ||
== Chemical Detector == | == Chemical Detector == | ||
While ultimately not used in the Contact campaign, there is a Chemical Detector variant (uncovered - ''ChemicalDetector_01_watch_F'') that can occupy the watch inventory slot, and use scripted hooks to display a threat value and time. When in the player's watch slot, the watch key (O by default) can be used to show or toggle it on-screen. | While ultimately not used in the Contact campaign, there is a Chemical Detector variant (uncovered - ''ChemicalDetector_01_watch_F'') that can occupy the watch inventory slot, and use scripted hooks to display a threat value and time. When in the player's watch slot, the watch key (O by default) can be used to show or toggle it on-screen. | ||
<gallery> | <gallery> | ||
Line 169: | Line 171: | ||
"YourLayerName" cutRsc ["RscWeaponChemicalDetector", "PLAIN", 1, false]; //IGUI display on | "YourLayerName" cutRsc ["RscWeaponChemicalDetector", "PLAIN", 1, false]; //IGUI display on | ||
"YourLayerName" cutText ["", "PLAIN"]; //IGUI display off | "YourLayerName" cutText ["", "PLAIN"]; //IGUI display off | ||
// | // fetching useful UI controls | ||
private _ui = uiNamespace getVariable "RscWeaponChemicalDetector"; | private _ui = uiNamespace getVariable "RscWeaponChemicalDetector"; | ||
private _obj = _ui displayCtrl 101; | private _obj = _ui displayCtrl 101; | ||
_obj ctrlAnimateModel ["Threat_Level_Source", 0.5, true]; // | _obj ctrlAnimateModel ["Threat_Level_Source", 0.5, true]; // displaying a threat level (value between 0.00 and 9.99) | ||
_obj ctrlShow false; // | _obj ctrlShow false; // hiding the detector when desired | ||
</sqf> | </sqf> | ||
Line 191: | Line 193: | ||
[this, 5.4, 4,2, true] spawn BIN_fnc_deconShowerAnimLarge; //Start the large Decon Shower (use these values) | [this, 5.4, 4,2, true] spawn BIN_fnc_deconShowerAnimLarge; //Start the large Decon Shower (use these values) | ||
[this] call BIN_fnc_deconShowerAnimStop; //Stop either type of Decon Shower | [this] call BIN_fnc_deconShowerAnimStop; //Stop either type of Decon Shower | ||
this setVariable ["BIN_deconshower_disableAction", true]; //Disables the user actions on either type of Decon Shower | this setVariable ["BIN_deconshower_disableAction", true]; //Disables the user actions on either type of Decon Shower | ||
private _state = _deconShower animationSourcePhase "valve_source"; //Detecting whether either type of Decon Shower is on / off (1 / 0) | private _state = _deconShower animationSourcePhase "valve_source"; //Detecting whether either type of Decon Shower is on / off (1 / 0) |
Revision as of 12:03, 15 July 2022
There are no engine nor scripted features to simulate Chemical Biological Radiological Nuclear (CBRN) threats, contamination, or decontamination in Arma 3. However, the Contact expansion has added a range of gear and props to utilize in custom content as desired. This page documents a few scripted methods to set them up.
Scripting
Hoses & Filters
There are several pieces of CBRN gear (especially Facewear and Backpacks) that require scripting to visually combine correctly. These samples only set the initial state; they will not deal with inventory changes during gameplay. At the moment there is no vanilla module to handle this automatically. However, there's quick function to set the hoses and filters to an unit.
Manual scripting
Combination Unit Respirator
Self-Contained Breathing Apparatus
Common Combinations
Item(s) | Preview | Classes | Sample Code |
---|---|---|---|
|
|
B_CombinationUnitRespirator_01_F G_AirPurifyingRespirator_01_F |
(backpackContainer this) setObjectTexture [1, "a3\supplies_f_enoch\bags\data\b_cur_01_co.paa"];
(backpackContainer this) setObjectTexture [2, "a3\supplies_f_enoch\bags\data\b_cur_01_co.paa"];
this linkItem "G_AirPurifyingRespirator_01_nofilter_F"; |
|
|
B_SCBA_01_F G_RegulatorMask_F |
Other combinations are possible, but not all of them would be ideal in the real world:
- CUR + Regulator Facepiece should work (though only the SCBA part contained within, not the PAPR).
- SCBA + NATO APR should work, but is not intended.
- NATO / CSAT APRs can of course be worn without any Backpack (filters attached).
- The Regular Facepiece should not be worn without Backpack.
- The CSAT APR doesn't need and was not designed to connect to the SCBA / CUR (As CSAT Combat Fatigue has already built-in “air-conditioning” units, and wearing both of Fatigue and APR is CBRN-protected canonically Source).
Facewear Overlays
There are simply 2D IGUI overlays available for the various relevant Facewear items. You can show these by script:
Item(s) | Preview | Class(es) | Overlay Class |
---|---|---|---|
|
|
G_AirPurifyingRespirator_01_F G_AirPurifyingRespirator_01_nofilter_F (protected scope) |
"RscCBRN_APR" |
|
|
G_AirPurifyingRespirator_02_black_F G_AirPurifyingRespirator_02_olive_F G_AirPurifyingRespirator_02_sand_F |
"RscCBRN_APR_02" |
|
|
G_RegulatorMask_F |
"RscCBRN_Regulator" |
Blindfold (Black) Blindfold (White) |
|
G_Blindfold_01_black_F G_Blindfold_01_white_F |
"RscBlindfold" |
Chemical Detector
While ultimately not used in the Contact campaign, there is a Chemical Detector variant (uncovered - ChemicalDetector_01_watch_F) that can occupy the watch inventory slot, and use scripted hooks to display a threat value and time. When in the player's watch slot, the watch key (O by default) can be used to show or toggle it on-screen.
Decon Showers
The regular and large Decon Showers have 3DEN attributes to control their initial state:
- Turn on sprinklers: starting the VFX / SFX from the scenario start
- Disable user action: removing the player ability to toggle the sprinklers during gameplay
Alternatively there are the following scripts: