diff options
| author | hybrid <hybrid@hybridlabs.pro> | 2026-06-11 19:58:31 +0300 |
|---|---|---|
| committer | hybrid <hybrid@hybridlabs.pro> | 2026-06-11 19:58:31 +0300 |
| commit | e670b4ed55c459a21090bd0178ceaaaf12d87989 (patch) | |
| tree | b6833d5e842475f0ee27f5f617096445fdd4e4a1 /Common/Config/Config_Loadouts.sqf | |
| download | a2wf_fallujah-e670b4ed55c459a21090bd0178ceaaaf12d87989.tar.gz a2wf_fallujah-e670b4ed55c459a21090bd0178ceaaaf12d87989.tar.bz2 a2wf_fallujah-e670b4ed55c459a21090bd0178ceaaaf12d87989.zip | |
init
Diffstat (limited to '')
| -rw-r--r-- | Common/Config/Config_Loadouts.sqf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Common/Config/Config_Loadouts.sqf b/Common/Config/Config_Loadouts.sqf new file mode 100644 index 0000000..7472a1f --- /dev/null +++ b/Common/Config/Config_Loadouts.sqf @@ -0,0 +1,15 @@ +/*
+ New loadout system. | Hybrid
+ Only one side gear is defined at a time. west don't know east and vice versa.
+*/
+
+/* Backpacks */
+
+/* Binocular (Used for spotting) */
+['WFBE_BINOCULARS',['Binocular','Binocular_Vector','Laserdesignator'],true] Call SetNamespace;
+
+/* Set the loadout depending on it's type. */
+[] Call Compile PreprocessFile Format["Common\Config\Core_Loadout\%1\Loadout_%2.sqf",WFBE_V_West_LoadoutRootVersion,WFBE_V_West_Loadout];
+[] Call Compile PreprocessFile Format["Common\Config\Core_Loadout\%1\Loadout_%2.sqf",WFBE_V_East_LoadoutRootVersion,WFBE_V_East_Loadout];
+
+diag_log Format ["[WFBE (INIT)][frameno:%1 | ticktime:%2] Config_Loadouts: Initialization (West: %3 | East: %4) - [Done]",diag_frameno,diag_tickTime,WFBE_V_West_Loadout,WFBE_V_East_Loadout];
\ No newline at end of file |
