/* * Author: bux578 * Checks the conditions for being able to frisk a unit * * Arguments: * 0: caller (player) * 1: target * * Return Value: * The return value * * Example: * [player, bob] call ACE_captives_fnc_canFriskPerson * * Public: No */ #include "script_component.hpp" PARAMS_2(_unit,_target); _target getVariable [QGVAR(isHandcuffed), false] || {_target getVariable ["ACE_isSearchable", false]} || {_target getVariable ["ACE_isUnconscious", false]}