Difference between revisions of "OpenInventory - Actor"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Jlundin
(New page: Category:Scripting Category:Papyrus '''Member of:''' Actor Script Opens this actor's inventory as if the player were pick-pocketing them. Will only open inventory on player's ...)
 
imported>Sollar
Line 30: Line 30:
== See Also ==
== See Also ==
*[[Actor Script]]
*[[Actor Script]]
*[[ShowGiftMenu_-_Actor]]

Revision as of 07:00, 25 June 2012

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

Function OpenInventory(bool abForceOpen = false) native

Parameters

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

Return Value

None.

Examples

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


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

See Also