mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
private ["_objects"];
|
|
_objects = nearestObjects [getPosATL player, ["Car", "Helicopter", "Motorcycle", "Ship", "TentStorage"], 10];
|
|
{
|
|
dayzUpdateVehicle = [_x,"all"];
|
|
publicVariableServer "dayzUpdateVehicle";
|
|
} foreach _objects;
|
|
|
|
private["_dialog","_magazineArray","_control","_item","_val","_max"];
|
|
|
|
disableSerialization;
|
|
_dialog = _this select 0;
|
|
_magazineArray = [];
|
|
|
|
//Primary Mags
|
|
for "_i" from 109 to 120 do
|
|
{
|
|
_control = _dialog displayCtrl _i;
|
|
_item = gearSlotData _control;
|
|
_val = gearSlotAmmoCount _control;
|
|
_max = getNumber (configFile >> "CfgMagazines" >> _item >> "count");
|
|
if (_item != "") then {
|
|
if (_val != _max) then {
|
|
_magazineArray set [count _magazineArray,[_item,_val]];
|
|
} else {
|
|
_magazineArray set [count _magazineArray,_item];
|
|
};
|
|
};
|
|
};
|
|
|
|
//Secondary Mags
|
|
for "_i" from 122 to 129 do
|
|
{
|
|
_control = _dialog displayCtrl _i;
|
|
_item = gearSlotData _control;
|
|
_val = gearSlotAmmoCount _control;
|
|
_max = getNumber (configFile >> "CfgMagazines" >> _item >> "count");
|
|
if (_item != "") then {
|
|
if (_val != _max) then {
|
|
_magazineArray set [count _magazineArray,[_item,_val]];
|
|
} else {
|
|
_magazineArray set [count _magazineArray,_item];
|
|
};
|
|
};
|
|
};
|
|
dayz_unsaved = true;
|
|
dayz_Magazines = _magazineArray;
|