mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
13 lines
327 B
Plaintext
13 lines
327 B
Plaintext
|
/**
|
||
|
* fn_isUnconscious.sqf
|
||
|
* @Descr: Checks whatever given object is in the unconscious state
|
||
|
* @Author: Glowbal
|
||
|
*
|
||
|
* @Arguments: [unit OBJECT]
|
||
|
* @Return: BOOL True when object is in unconscious state
|
||
|
* @PublicAPI: true
|
||
|
*/
|
||
|
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
((_this select 0) getvariable [QGVAR(StateUnconscious),false]);
|