GetObjectComponentCount - MiscObject

From the Fallout4 CreationKit Wiki
Revision as of 22:17, 8 October 2016 by imported>Qazaaq (fixed wiki link)
Jump to navigation Jump to search

Member of: MiscObject Script

Returns the number of the given Component this form has.

Syntax

int Function GetObjectComponentCount( Component akComponent ) native

Parameters

  • akComponent - The component you are interested in.

Return Value

The number of the given component this form has.

Examples

if item.GetObjectComponentCount( Screws ) > 1
  Debug.Trace("This item has too many screws.  The game is now unbalanced.")
endIf

See Also