mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-21 19:06:29 +03:00
Adding combine matches
This commit is contained in:
@@ -1,7 +1,11 @@
|
||||
if (dayz_actionInProgress) exitWith { localize "str_player_actionslimit" call dayz_rollingMessages; };
|
||||
dayz_actionInProgress = true;
|
||||
|
||||
private ["_total", "_full", "_remain", "_amount"];
|
||||
|
||||
_total = 0;
|
||||
{
|
||||
if(configName inheritsFrom (configfile >> "CfgMagazines" >> _x) == "ItemAntibiotic") then {
|
||||
if (configName inheritsFrom (configfile >> "CfgMagazines" >> _x) == "ItemAntibiotic") then {
|
||||
_amount = getNumber(configFile >> "CfgMagazines" >> _x >> "medical" >> "amount");
|
||||
if(_amount > 0) then {
|
||||
_total = _total + _amount;
|
||||
@@ -9,8 +13,10 @@ _total = 0;
|
||||
};
|
||||
};
|
||||
} count (magazines player);
|
||||
|
||||
_full = floor(_total / 6);
|
||||
_remain = _total % 6;
|
||||
|
||||
for "_i" from 1 to _full do
|
||||
{
|
||||
player addMagazine "ItemAntibiotic6";
|
||||
@@ -19,3 +25,5 @@ for "_i" from 1 to _full do
|
||||
if(_remain > 0 ) then {
|
||||
player addMagazine "ItemAntibiotic" + str(_remain);
|
||||
};
|
||||
|
||||
dayz_actionInProgress = false;
|
||||
|
||||
33
SQF/dayz_code/actions/player_combineMatches.sqf
Normal file
33
SQF/dayz_code/actions/player_combineMatches.sqf
Normal file
@@ -0,0 +1,33 @@
|
||||
if (dayz_actionInProgress) exitWith { localize "str_player_actionslimit" call dayz_rollingMessages; };
|
||||
dayz_actionInProgress = true;
|
||||
|
||||
private ["_total", "_full", "_remain", "_amount"];
|
||||
|
||||
_total = 0;
|
||||
{
|
||||
if (configName inheritsFrom (configfile >> "CfgWeapons" >> _x) == "ItemMatchbox") then {
|
||||
_amount = getNumber(configFile >> "CfgWeapons" >> _x >> "matches");
|
||||
if(_amount > 0) then {
|
||||
_total = _total + _amount;
|
||||
player removeWeapon _x;
|
||||
};
|
||||
};
|
||||
} count (weapons player);
|
||||
|
||||
_full = floor(_total / 5);
|
||||
_remain = _total % 5;
|
||||
|
||||
for "_i" from 1 to _full do
|
||||
{
|
||||
if ("Item5Matchbox" in weapons player) then {
|
||||
"Item5Matchbox" call player_addDuplicateTool;
|
||||
} else {
|
||||
player addWeapon "Item5Matchbox";
|
||||
};
|
||||
};
|
||||
|
||||
if(_remain > 0 ) then {
|
||||
player addWeapon "Item"+ str(_remain)+"Matchbox";
|
||||
};
|
||||
|
||||
dayz_actionInProgress = false;
|
||||
Reference in New Issue
Block a user