ACE3/addons/common/functions/fnc_addCanInteractWithCondition.sqf

23 lines
632 B
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
2015-03-15 08:02:11 +00:00
/*
* Author: commy2
* Add a condition that gets checked by ace_common_fnc_canInteractWith.
*
* Arguments:
2015-09-18 06:23:18 +00:00
* 0: The conditions id. Used to remove later or as exception name. An already existing name overwrites. <STRING>
* 1: The condition to check. format of "_this" is "[_player, _target]". <CODE>
2015-03-15 08:02:11 +00:00
*
* Return Value:
2015-09-18 06:23:18 +00:00
* None
2015-03-15 08:02:11 +00:00
*
* Example:
* ["ID", {Condition}] call ace_common_fnc_addCanInteractWithCondition
*
2015-09-18 06:23:18 +00:00
* Public: No
2015-03-15 08:02:11 +00:00
*/
2015-09-18 06:23:18 +00:00
params ["_conditionName", "_conditionFunc"];
2015-03-15 08:02:11 +00:00
_conditionName = toLowerANSI _conditionName;
GVAR(InteractionConditions) set [_conditionName, _conditionFunc];