ACE3/addons/captives/functions/fnc_doRemoveHandcuffs.sqf

21 lines
376 B
Plaintext
Raw Normal View History

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"
PARAMS_2(_unit,_target);
2015-02-05 22:39:45 +00:00
["SetHandcuffed", [_target], [_target, false]] call EFUNC(common,targetEvent);