diff options
| author | hybrid <hybrid@hybridlabs.pro> | 2026-06-11 19:38:09 +0300 |
|---|---|---|
| committer | hybrid <hybrid@hybridlabs.pro> | 2026-06-11 19:38:09 +0300 |
| commit | a3a91d4f45b22fd487ecbc954ad979be5d03efdd (patch) | |
| tree | a554ab159a347dcd6c00ca1c7c26c1ec3ac0a6bd /Common/Config/Config_Loadouts.sqf | |
| download | a2wf_chernarus-a3a91d4f45b22fd487ecbc954ad979be5d03efdd.tar.gz a2wf_chernarus-a3a91d4f45b22fd487ecbc954ad979be5d03efdd.tar.bz2 a2wf_chernarus-a3a91d4f45b22fd487ecbc954ad979be5d03efdd.zip | |
Diffstat (limited to 'Common/Config/Config_Loadouts.sqf')
| -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 |
