ACE3/addons/common/functions/fnc_removeCanInteractWithCondition.sqf

33 lines
674 B
Plaintext
Raw Normal View History

2015-03-15 08:02:11 +00:00
/*
* Author: commy2
* Remove a condition that gets checked by ace_common_fnc_canInteractWith.
*
* Arguments:
2015-09-18 23:50:17 +00:00
* 0: The conditions id. <STRING>
2015-03-15 08:02:11 +00:00
*
* Return Value:
2015-09-18 23:50:17 +00:00
* None
2015-03-15 08:02:11 +00:00
*
2015-09-18 23:50:17 +00:00
* Public: No
2015-03-15 08:02:11 +00:00
*/
#include "script_component.hpp"
2015-09-18 23:50:17 +00:00
params ["_conditionName"];
2015-03-15 08:02:11 +00:00
2015-09-18 23:50:17 +00:00
_conditionName = toLower _conditionName;
2015-03-15 08:02:11 +00:00
2015-09-18 23:50:17 +00:00
private "_conditions";
2015-03-15 08:02:11 +00:00
_conditions = missionNamespace getVariable [QGVAR(InteractionConditions), [[],[]]];
2015-09-18 23:50:17 +00:00
_conditions params ["_conditionNames", "_conditionFuncs"];
2015-03-15 08:02:11 +00:00
private "_index";
_index = _conditionNames find _conditionName;
if (_index == -1) exitWith {};
_conditionNames deleteAt _index;
_conditionFuncs deleteAt _index;
2015-09-18 23:50:17 +00:00
GVAR(InteractionConditions) = _conditions;