mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
private ["_vehicle","_class","_maxMagazines","_maxWeapons","_maxBackpacks","_magazineCount","_weaponsCount","_backpackCount","_magazineCount_raw","_weaponsCount_raw","_backpackCount_raw"];
|
|
_vehicle = _this select 3;
|
|
|
|
_class = typeOf _vehicle;
|
|
|
|
// Get max magazines count
|
|
_maxMagazines = getNumber (configFile >> "CfgVehicles" >> _class >> "transportMaxMagazines");
|
|
|
|
// Get max weapon count
|
|
_maxWeapons = getNumber (configFile >> "CfgVehicles" >> _class >> "transportMaxWeapons");
|
|
|
|
// Get max backpack count
|
|
_maxBackpacks = getNumber (configFile >> "CfgVehicles" >> _class >> "transportmaxbackpacks");
|
|
|
|
// Count && show magazines available space
|
|
_magazineCount_raw = getMagazineCargo _vehicle;
|
|
|
|
// Count && show weapons available space
|
|
_weaponsCount_raw = getWeaponCargo _vehicle;
|
|
|
|
// Count && show backpacks available space
|
|
_backpackCount_raw = getBackpackCargo _vehicle;
|
|
|
|
// Count && show magazines available space
|
|
_magazineCount = (_magazineCount_raw select 1) call vehicle_gear_count;
|
|
|
|
// Count && show weapons available space
|
|
_weaponsCount = (_weaponsCount_raw select 1) call vehicle_gear_count;
|
|
|
|
// Count && show weapons available space
|
|
_backpackCount = (_backpackCount_raw select 1) call vehicle_gear_count;
|
|
|
|
cutText [format[(localize "str_epoch_player_1"),_magazineCount,_maxMagazines,_weaponsCount,_maxWeapons,_backpackCount,_maxBackpacks], "PLAIN DOWN"];
|