OpenInventory - Actor

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Actor Script

Opens this actor's inventory as if the player were pick-pocketing them. Will only open inventory on player's teammates unless told to force it open.

Syntax[edit | edit source]

Function OpenInventory(bool abForceOpen = false) native

Parameters[edit | edit source]

  • abForceOpen: Whether to force open the inventory if the actor isn't the player's teammate.
    • Default: False

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Open a friend's inventory
Friend.OpenInventory()


; Force open an enemy's inventory
Enemy.OpenInventory(true)

See Also[edit | edit source]