StartDeferredKill - Actor

Revision as of 08:49, 15 June 2012 by imported>JLundin (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Actor Script ''(Requires 1.6)'' Puts the actor into a Deferred Kill state. In this state, the actor can take ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Actor Script (Requires 1.6)

Puts the actor into a Deferred Kill state. In this state, the actor can take damage but will not die. You can check the actor's Health, if it's <= 0 then you know the actor is dead. Bring the actor out of the deferred kill state by calling EndDeferredKill. Until you do this, the actor will not be able do die.

SyntaxEdit

Function StartDeferredKill() native

ParametersEdit

None.

Return ValueEdit

None.

ExamplesEdit

; Force the player into a Deferred Kill state
Game.GetPlayer().StartDeferredKill()


See AlsoEdit