SetRestrained - Actor

From the CreationKit Wiki
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Actor Script

Flags this actor as restrained or not.

Syntax

Function SetRestrained(bool abRestrained = true) native

Parameters

  • abRestrained: Whether to set or clear the actor's restrained status.
    • Default: True

Return Value

None.

Examples

; Set Prisoner to restrained
Prisoner.SetRestrained()


; Clear Prisoner's restrained status
Prisoner.SetRestrained(false)

See Also