Difference between revisions of "ConstructibleObject Script"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
imported>Qazaaq
m (crosslinked)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:Script Objects]]
[[Category:Items]]
'''Extends:''' [[MiscObject Script]]
'''Extends:''' [[MiscObject Script]]
 
<BR/>
'''Editor:''' [[Constructible Object]]
'''Editor:''' [[Constructible Object]]


Script for the manipulation of constructible object base objects.
Script for the manipulation of a constructible object.


== Definition ==
== Definition ==
Line 17: Line 13:
None
None


== Global Functions ==
== F4SE Structs ==
None
*Struct [[ConstructibleComponent Struct - ConstructibleObject|ConstructibleComponent]]
**A structure that holds information about a constructible object's required item list.


== Member Functions ==
== Member Functions ==
None
None
== F4SE Member Functions ==
*ConstructibleComponent[] Function [[GetConstructibleComponents - ConstructibleObject|GetConstructibleComponents]]()
**Gets the required item list for this constructible object.
*int Function [[GetCreatedCount - ConstructibleObject|GetCreatedCount]]()
**Gets the amount of Forms created by this constructible object.
*Form Function [[GetCreatedObject - ConstructibleObject|GetCreatedObject]]()
**Gets the created object Form for this constructible object.
*int Function [[GetPriority - ConstructibleObject|GetPriority]]()
**Gets the priority for this constructible object.
*Keyword Function [[GetWorkbenchKeyword - ConstructibleObject|GetWorkbenchKeyword]]()
**Gets the Keyword for this constructible object.
*Function [[SetConstructibleComponents - ConstructibleObject|SetConstructibleComponents]](ConstructibleComponent[] components)
**Sets the required item list for this constructible object.
*Function [[SetCreatedCount - ConstructibleObject|SetCreatedCount]](int count)
**Sets the amount of Forms created by this constructible object.
*Function [[SetCreatedObject - ConstructibleObject|SetCreatedObject]](Form akForm)
**Sets the created object Form for this constructible object.
*Function [[SetPriority - ConstructibleObject|SetPriority]](int priority)
**Sets the priority for this constructible object.
*Function [[SetWorkbenchKeyword - ConstructibleObject|SetWorkbenchKeyword]](Keyword akKeyword)
**Sets the Keyword for this constructible object.


== Events ==
== Events ==
Line 27: Line 55:


== See Also ==
== See Also ==
*[[Keyword]]
*[[Component]]
*[[Form Script]]
*[[:Category:Items|Items Category]]
*[[:Category:Items|Items Category]]
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:Script Objects]]
[[Category:Items]]

Latest revision as of 01:08, 28 October 2017

Extends: MiscObject Script
Editor: Constructible Object

Script for the manipulation of a constructible object.

Definition[edit | edit source]

ScriptName ConstructibleObject extends MiscObject Native Hidden

Properties[edit | edit source]

None

F4SE Structs[edit | edit source]

  • Struct ConstructibleComponent
    • A structure that holds information about a constructible object's required item list.

Member Functions[edit | edit source]

None

F4SE Member Functions[edit | edit source]

  • int Function GetCreatedCount()
    • Gets the amount of Forms created by this constructible object.
  • Form Function GetCreatedObject()
    • Gets the created object Form for this constructible object.
  • int Function GetPriority()
    • Gets the priority for this constructible object.
  • Function SetConstructibleComponents(ConstructibleComponent[] components)
    • Sets the required item list for this constructible object.
  • Function SetCreatedCount(int count)
    • Sets the amount of Forms created by this constructible object.
  • Function SetCreatedObject(Form akForm)
    • Sets the created object Form for this constructible object.
  • Function SetPriority(int priority)
    • Sets the priority for this constructible object.
  • Function SetWorkbenchKeyword(Keyword akKeyword)
    • Sets the Keyword for this constructible object.

Events[edit | edit source]

None

See Also[edit | edit source]