mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
25 lines
466 B
Plaintext
25 lines
466 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: mharis001
|
|
* Condition for going into cardiac arrest upon receiving a fatal injury.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player] call ace_medical_statemachine_fnc_conditionSecondChance
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit"];
|
|
|
|
if (isPlayer _unit) then {
|
|
GVAR(fatalInjuriesPlayer) != FATAL_INJURIES_ALWAYS
|
|
} else {
|
|
GVAR(fatalInjuriesAI) != FATAL_INJURIES_ALWAYS
|
|
}
|