mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
492 B
Plaintext
24 lines
492 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Checks the conditions for being able to remove handcuffs
|
|
*
|
|
* Arguments:
|
|
* 0: caller (player) <OBJECT>
|
|
* 1: target <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* The return value <BOOL>
|
|
*
|
|
* Example:
|
|
* [player, bob] call ACE_captives_fnc_canRemoveHandcuffs
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
PARAMS_2(_unit,_target);
|
|
|
|
//Unit is handcuffed and not currently being escorted
|
|
_target getVariable [QGVAR(isHandcuffed), false] &&
|
|
{isNull (attachedTo _target)}
|