SetIntimidated - Actor

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Actor Script

Flags this actor as intimidated by the player

Syntax[edit | edit source]

Function SetIntimidated(bool abIntimidate = true) native

Parameters[edit | edit source]

  • abIntimidate: Whether to set or clear the actor's intimidated status.
    • Default: True

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Set coward to be intimidated by the player
Coward.SetIntimidated()


; Clear Coward's intimidated status
Coward.SetIntimidated(false)

See Also[edit | edit source]