2015-02-04 19:16:19 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
2015-02-06 23:03:56 +00:00
|
|
|
* Remove handcuffs from a target
|
2015-02-04 19:16:19 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-02-06 23:03:56 +00:00
|
|
|
* 0: target <OBJECT>
|
2015-02-04 19:16:19 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* The return value <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
2015-02-06 23:03:56 +00:00
|
|
|
* [bob, false] call ACE_captives_fnc_doRemoveHandcuffs
|
2015-02-04 19:16:19 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-04 23:15:20 +00:00
|
|
|
params ["_unit", "_target"];
|
2015-02-04 19:16:19 +00:00
|
|
|
|
2016-05-25 18:23:53 +00:00
|
|
|
[QGVAR(setHandcuffed), [_target, false], [_target]] call CBA_fnc_targetEvent;
|