mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
15 lines
254 B
Plaintext
15 lines
254 B
Plaintext
/*
|
|
* Author: BaerMitUmlaut
|
|
* Check if the unit is unconscious.
|
|
*
|
|
* Arguments:
|
|
* 0: The Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Is unconscious <BOOL>
|
|
*/
|
|
#include "script_component.hpp"
|
|
params ["_unit"];
|
|
|
|
_unit getVariable [QGVAR(isUnconscious), false]
|