mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
50 lines
1.3 KiB
Plaintext
50 lines
1.3 KiB
Plaintext
private ["_objects"];
|
|
_objects = nearestObjects [player, dayz_updateObjects, 10];
|
|
{
|
|
//["PVDZE_veh_Update",[_x,"gear"]] call callRpcProcedure;
|
|
PVDZE_veh_Update = [_x,"gear"];
|
|
publicVariableServer "PVDZE_veh_Update";
|
|
|
|
} count _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 (_item == "BoltSteel") then { _item = "WoodenArrow" };
|
|
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;
|