Difference between revisions of "GetNoBleedoutRecovery - Actor"
Jump to navigation
Jump to search
imported>Rhavlovick m (1 revision: Clobber re-import by Henning) |
(No difference)
|
Revision as of 15:26, 18 October 2011
Member of: Actor Script
Gets this whether this actor is allowed to recover from bleedout. (If not, they will stay in bleed out when knocked there)
Syntax
bool Function GetNoBleedoutRecovery() native
Parameters
None.
Return Value
True if they are not allowed to recover from bleed out.
Examples
; 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