diff options
Diffstat (limited to 'Common/Config/Core/Core_Spetsnaz.sqf')
| -rw-r--r-- | Common/Config/Core/Core_Spetsnaz.sqf | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/Common/Config/Core/Core_Spetsnaz.sqf b/Common/Config/Core/Core_Spetsnaz.sqf new file mode 100644 index 0000000..34b7a9f --- /dev/null +++ b/Common/Config/Core/Core_Spetsnaz.sqf @@ -0,0 +1,50 @@ +/* Spetsnaz Configuration */
+private ["_c","_get","_i","_p"];
+
+_c = [];
+_i = [];
+
+/* Infantry */
+_c = _c + ['RUS_Soldier1'];
+_i = _i + [['','',250,6,-1,2,0,0.98,'Russians Spetsnaz',[]]];
+
+_c = _c + ['RUS_Soldier2'];
+_i = _i + [['','',260,6,-1,3,0,0.98,'Russians Spetsnaz',[]]];
+
+_c = _c + ['RUS_Soldier_GL'];
+_i = _i + [['','',270,6,-1,3,0,0.99,'Russians Spetsnaz',[]]];
+
+_c = _c + ['RUS_Soldier_Marksman'];
+_i = _i + [['','',290,6,-1,3,0,0.99,'Russians Spetsnaz',[]]];
+
+_c = _c + ['RUS_Soldier3'];
+_i = _i + [['','',295,6,-1,3,0,0.98,'Russians Spetsnaz',[]]];
+
+_c = _c + ['RUS_Soldier_TL'];
+_i = _i + [['','',300,6,-1,3,0,1.0,'Russians Spetsnaz',[]]];
+
+for '_z' from 0 to (count _c)-1 do {
+ if (isClass (configFile >> 'CfgVehicles' >> (_c select _z))) then {
+ _get = (_c select _z) Call GetNamespace;
+ if (isNil '_get') then {
+ if ((_i select _z) select 0 == '') then {(_i select _z) set [0, [_c select _z,'displayName'] Call GetConfigInfo]};
+ if (typeName ((_i select _z) select 4) == 'SCALAR') then {
+ if (((_i select _z) select 4) == -2) then {
+ _ret = (_c select _z) Call Compile preprocessFile "Common\Functions\Common_GetConfigVehicleCrewSlot.sqf";
+ (_i select _z) set [4, _ret select 0];
+ (_i select _z) set [9, _ret select 1];
+ };
+ };
+ if (WF_Debug) then {(_i select _z) set [3,1]};
+ _p = if ((_c select _z) isKindOf 'Man') then {'portrait'} else {'picture'};
+ (_i select _z) set [1, [_c select _z,_p] Call GetConfigInfo];
+ [_c select _z,_i select _z] Call SetNamespace;
+ } else {
+ diag_log Format ["[WFBE (INIT)][frameno:%2 | ticktime:%3] Core_Spetsnaz: Duplicated Element found '%1'",(_c select _z),diag_frameno,diag_tickTime];
+ };
+ } else {
+ diag_log Format ["[WFBE (ERROR)][frameno:%2 | ticktime:%3] Core_Spetsnaz: Element '%1' is not a valid class.",(_c select _z),diag_frameno,diag_tickTime];
+ };
+};
+
+diag_log Format ["[WFBE (INIT)][frameno:%2 | ticktime:%3] Core_Spetsnaz: Initialization (%1 Elements) - [Done]",count _c,diag_frameno,diag_tickTime];
\ No newline at end of file |
