SetIntimidated - Actor

Member of: Actor Script

Flags this actor as intimidated by the player

SyntaxEdit

Function SetIntimidated(bool abIntimidate = true) native

ParametersEdit

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

Return ValueEdit

None.

ExamplesEdit

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


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

See AlsoEdit