IsInvulnerable - ActorBase

From the CreationKit Wiki
Jump to navigation Jump to search

Member of: ActorBase Script

Obtains whether this actor base is flagged as invulnerable or not.

Syntax[edit | edit source]

bool Function IsInvulnerable() native

Parameters[edit | edit source]

None.

Return Value[edit | edit source]

Whether this actor base is flagged as invulnerable.

Examples[edit | edit source]

; Is the actor invulnerable?
ActorBase PersonBase = ImportantPersonProperty.GetBaseObject() as ActorBase
if (PersonBase.IsInvulnerable())
  Debug.Trace("Important person is invulnerable")
endIf

See Also[edit | edit source]