summaryrefslogtreecommitdiffstats
path: root/Common/Config/Config_Loadouts.sqf
diff options
context:
space:
mode:
authorhybrid <hybrid@hybridlabs.pro>2026-06-11 19:55:24 +0300
committerhybrid <hybrid@hybridlabs.pro>2026-06-11 19:55:24 +0300
commit628d33984d9228f1781d13a65fbb80f35facc899 (patch)
treecd909141f87e14f22c3511549a9bc067d9ff8b50 /Common/Config/Config_Loadouts.sqf
downloada2wf_sara-628d33984d9228f1781d13a65fbb80f35facc899.tar.gz
a2wf_sara-628d33984d9228f1781d13a65fbb80f35facc899.tar.bz2
a2wf_sara-628d33984d9228f1781d13a65fbb80f35facc899.zip
init
Diffstat (limited to 'Common/Config/Config_Loadouts.sqf')
-rw-r--r--Common/Config/Config_Loadouts.sqf15
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