From 39c7ff9ac75e2fdc1fa01c8947470017dbeba7d9 Mon Sep 17 00:00:00 2001 From: 82ndab-Bravo17 <82ndab.bravo17@gmail.com> Date: Thu, 2 Mar 2017 19:37:20 -0500 Subject: [PATCH] Option to re-allow non Group Leaders to place Jammers --- Sources/epoch_code/compile/building/EPOCH_isBuildAllowed.sqf | 4 +++- Sources/epoch_config/Configs/CfgEpochClient.hpp | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Sources/epoch_code/compile/building/EPOCH_isBuildAllowed.sqf b/Sources/epoch_code/compile/building/EPOCH_isBuildAllowed.sqf index 2118fc62..88adeb65 100644 --- a/Sources/epoch_code/compile/building/EPOCH_isBuildAllowed.sqf +++ b/Sources/epoch_code/compile/building/EPOCH_isBuildAllowed.sqf @@ -31,6 +31,7 @@ _ownedJammerExists = false; _useSplitCountLimits = false; _useGroupCountLimits = true; _nearestJammer = objNull; +_jammerGLOnly = true; // reject building if in vehicle if (vehicle player != player)exitWith{["Building Disallowed: Inside Vehicle", 5] call Epoch_message; false }; @@ -50,6 +51,7 @@ _maxBuildingHeight = getNumber(_config >> "maxBuildingHeight"); _jammerPerGroup = getNumber(_config >> "jammerPerGroup"); if(getNumber(_config >> "useGroupCountLimits") == 0)then{_useGroupCountLimits=false}; if(getNumber(_config >> "splitCountLimits") == 1)then{_useSplitCountLimits=true}; +if(getNumber(_config >> "jammerGLOnly") == 0)then{_jammerGLOnly=false}; if(_buildingJammerRange == 0)then{_buildingJammerRange = 75}; if(_buildingCountLimit == 0)then{_buildingCountLimit = 200}; if(_buildingCountLeader == 0)then{_buildingCountLeader = _buildingCountLimit}; @@ -131,7 +133,7 @@ if !(_jammer isEqualTo []) then { } else { if (_objType in ["PlotPole_EPOCH", "PlotPole_SIM_EPOCH"]) then { - if (!(EPOCH_my_groupUID isequalto "") && !((getplayeruid player) isequalto EPOCH_my_groupUID)) exitwith { + if (!(EPOCH_my_groupUID isequalto "") && !((getplayeruid player) isequalto EPOCH_my_groupUID) && _jammerGLOnly) exitwith { _buildingAllowed = false; ["The Group Leader must place the Jammer!", 5] call Epoch_message; }; diff --git a/Sources/epoch_config/Configs/CfgEpochClient.hpp b/Sources/epoch_config/Configs/CfgEpochClient.hpp index 3250ef85..576d2df0 100644 --- a/Sources/epoch_config/Configs/CfgEpochClient.hpp +++ b/Sources/epoch_config/Configs/CfgEpochClient.hpp @@ -27,6 +27,7 @@ class CfgEpochClient buildingRequireJammer = 1; //1 = require jammer to build buildingJammerRange = 75; // jammer range in meters jammerPerGroup = 1; // allowed number of jammers per group. + jammerGLOnly = 1; // allow only group leader to place Jammer minJammerDistance = 650; // min distance to next Jammer maxBuildingHeight = 33; // Max Height, building is allowed. buildingCountLimit = 200; //overall building limit in range of jammer (overridden if "useGroupCountLimits=1")