Difference between revisions of "MiscObject Script"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>ShadeMe
(Add missing F4SE member functions)
imported>Qazaaq
m (crosslinked)
Line 1: Line 1:
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:Script Objects]]
[[Category:Items]]
'''Extends:''' [[Form Script]]
'''Extends:''' [[Form Script]]
 
<BR/>
'''Editor:''' [[MiscItem]]
'''Editor:''' [[MiscItem]]


Line 40: Line 36:
== See Also ==
== See Also ==
*[[:Category:Items|Items Category]]
*[[:Category:Items|Items Category]]
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:Script Objects]]
[[Category:Items]]

Revision as of 01:09, 28 October 2017

Extends: Form Script
Editor: MiscItem

Script for the manipulation of miscellaneous base objects.

Definition

ScriptName MiscObject extends Form Native Hidden

Properties

None

F4SE Structs

  • Struct MiscComponent
    • A structure that holds information about a component of the MiscObject.

Global Functions

None

Member Functions

  • int Function GetObjectComponentCount(Component akComponent)
    • Returns the number of the given component this form has.

F4SE Member Functions

  • MiscComponent[] Function GetMiscComponents()
    • Returns the MiscComponents this MiscObject has.
  • Function SetMiscComponents(MiscComponent[] akComponents)
    • Sets the MiscComponents this MiscObject has.

Events

None

See Also