GetContainerInventoryCount

DescriptionEdit

Used to check if a container has a specific amount (count) of items in it.

SyntaxEdit

[ContainerREF].GetContainerInventoryCount amount

ExamplesEdit

 if MyContainerREF.GetContainerInventoryCount == 0 ; if the container is empty
   MyContainerREF.AddItem Caps001 100
 endif
 if MyContainerREF.GetContainerInventoryCount >= 1 ; if the container has something
   Return
 EndIf

See AlsoEdit