GetNoBleedoutRecovery - Actor
Member of: Actor Script
Gets whether this actor is allowed to recover from bleedout. (If not, they will stay in bleed out when knocked there)
SyntaxEdit
bool Function GetNoBleedoutRecovery() native
ParametersEdit
None.
Return ValueEdit
True if they are not allowed to recover from bleed out.
ExamplesEdit
; Get whether the important person is allowed to recover from bleedout
if ImportantPerson.GetNoBleedoutRecovery()
Debug.Trace("Important person is not allowed to recover from bleedout")
endIf