Difference between revisions of "MiscObject Script"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
(Added some description details.)
imported>Qazaaq
(changed description details, again)
Line 22: Line 22:
== Member Functions ==
== Member Functions ==
*int Function [[GetObjectComponentCount - MiscObject|GetObjectComponentCount]](Component akComponent)
*int Function [[GetObjectComponentCount - MiscObject|GetObjectComponentCount]](Component akComponent)
**Gets the quantity of the given component for this MiscItem.
**Gets the quantity of the given Component from the MiscItem ''Component Data''.


== F4SE Member Functions ==
== F4SE Member Functions ==
Line 35: Line 35:


== See Also ==
== See Also ==
*[[MiscItem]]
*[[:Category:Items|Items Category]]
*[[:Category:Items|Items Category]]



Revision as of 19:03, 2 December 2018

Extends: Form Script
Editor: MiscItem

Script for the manipulation of miscellaneous base objects.

Definition

ScriptName MiscObject extends Form Native Hidden

Properties

None

F4SE Structs

A structure that holds information about the Component Data of a MiscItem.

Global Functions

None

Member Functions

  • int Function GetObjectComponentCount(Component akComponent)
    • Gets the quantity of the given Component from the MiscItem Component Data.

F4SE Member Functions

  • MiscComponent[] Function GetMiscComponents()
    • Gets the Component Data for this MiscItem as an array of MiscComponent structures.
  • Function SetMiscComponents(MiscComponent[] akComponents)
    • Sets the Component Data for this MiscItem using an array of MiscComponent structures.

Events

None

See Also