mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
485 B
Plaintext
21 lines
485 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Return the captivity status of an unit.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Captivity Reasons, empty if not captive <ARRAY>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
//Now just a wrapper for FUNC(statusEffect_get) [No longer used in ace as of 3.5]
|
|
ACE_DEPRECATED("ace_common_fnc_getCaptivityStatus","3.7.0","ace_common_fnc_statusEffect_get");
|
|
|
|
([_unit, "setCaptive"] call FUNC(statusEffect_get)) select 1
|