mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Difficulty magic.
This commit is contained in:
parent
2e3545f3d0
commit
25b7f779f1
@ -110,7 +110,7 @@ if((call CBA_fnc_getFoV) select 1 > 9) then {
|
||||
FUNC(disableFire) = {
|
||||
_firedEH = _this select 0;
|
||||
|
||||
if(_firedEH < 0) then {
|
||||
if(_firedEH < 0 && difficulty > 0) then {
|
||||
_firedEH = [ACE_player, "DefaultAction", {true}, {
|
||||
_canFire = ACE_player getVariable["ace_missileguidance_target", nil];
|
||||
if(!isNil "_canFire") exitWith { false };
|
||||
@ -122,7 +122,7 @@ FUNC(disableFire) = {
|
||||
FUNC(enableFire) = {
|
||||
_firedEH = _this select 0;
|
||||
|
||||
if(_firedEH > 0) then {
|
||||
if(_firedEH > 0 && difficulty > 0) then {
|
||||
[ACE_player, "DefaultAction", _firedEH] call EFUNC(common,removeActionEventHandler);
|
||||
};
|
||||
-1
|
||||
|
@ -13,7 +13,7 @@ if(!isNil "_pfh") then {
|
||||
_args = uiNamespace getVariable[QGVAR(arguments), nil ];
|
||||
if(!isNil "_args") then {
|
||||
_disableFireEH = _args select 6;
|
||||
if(_disableFireEH > 0) then {
|
||||
if(_disableFireEH > 0 && difficulty > 0) then {
|
||||
[ACE_player, "DefaultAction", _disableFireEH] call EFUNC(common,removeActionEventHandler);
|
||||
};
|
||||
uiNameSpace setVariable [QGVAR(arguments),nil];
|
||||
|
@ -48,7 +48,7 @@ if(isNil "_target") then {
|
||||
} else {
|
||||
_canUseLock = getNumber (_config >> "canVanillaLock");
|
||||
// @TODO: Get vanilla target
|
||||
if(_canUseLock > 0 || cadetMode) then {
|
||||
if(_canUseLock > 0 || difficulty < 1) then {
|
||||
_vanillaTarget = cursorTarget;
|
||||
|
||||
TRACE_1("Using Vanilla Locking", _vanillaTarget);
|
||||
|
Loading…
x
Reference in New Issue
Block a user