SetAttackActorOnSight - Actor

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Actor Script

Flags this actor to be attacked by all actors when detected

Syntax[edit | edit source]

Function SetAttackActorOnSight(bool abAttackOnSight = true) native

Parameters[edit | edit source]

  • abAttackOnSight: Whether to set or clear the actor's attacke on sight status.
    • Default: True

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Set Buddy to be attacked by everyone
Buddy.SetAttackActorOnSight()


; Clear buddy getting attacked by everyone
Buddy.SetAttackActorOnSight(false)

See Also[edit | edit source]