ACE3/addons/common/functions/fnc_removeCanInteractWithCondition.sqf

22 lines
434 B
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
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
*
* Example:
* ["ID"] call ace_common_fnc_removeCanInteractWithCondition
*
2015-09-18 23:50:17 +00:00
* Public: No
2015-03-15 08:02:11 +00:00
*/
2015-09-18 23:50:17 +00:00
params ["_conditionName"];
2015-03-15 08:02:11 +00:00
_conditionName = toLowerANSI _conditionName;
GVAR(InteractionConditions) deleteAt _conditionName;