Difference between revisions of "ConstructibleObject Script"
Jump to navigation
Jump to search
imported>Seigneur Voland m |
imported>CraftySentinel m (→SKSE Member Functions: Formatting Change) |
||
Line 24: | Line 24: | ||
== SKSE Member Functions == | == SKSE Member Functions == | ||
{|class="wikitable" width =100% | |||
!style="text-align:left;"|Function | |||
!style="text-align:left;"|Description | |||
|- | |||
|[[GetResult - ConstructibleObject|Form '''GetResult'''()]] | |||
|Returns the form created by this recipe. | |||
|- | |||
|[[SetResult - ConstructibleObject|'''SetResult'''(Form ''result'')]] | |||
|Changes the form created by this recipe. | |||
|- | |||
|[[GetResultQuantity - ConstructibleObject|Int '''GetResultQuantity'''()]] | |||
|Returns the quantity of the result created by this recipe. | |||
|- | |||
|[[SetResultQuantity - ConstructibleObject|'''SetResultQuantity'''(Int ''quantity'')]] | |||
|Changes the quantity of the result created by this recipe. | |||
|- | |||
|[[GetNumIngredients - ConstructibleObject|Int '''GetNumIngredients'''()]] | |||
|Returns the number of ingredients needed by this recipe. | |||
|- | |||
|[[GetNthIngredient - ConstructibleObject|Form '''GetNthIngredient'''(Int ''n'')]] | |||
|Returns the specified ingredient needed by this recipe. | |||
|- | |||
|[[SetNthIngredient - ConstructibleObject|'''SetNthIngredient'''(Form ''required'', Int ''n'')]] | |||
|Changes the specified ingredient needed by this recipe. | |||
|- | |||
|[[GetNthIngredientQuantity - ConstructibleObject|Int '''GetNthIngredientQuantity'''(Int ''n'')]] | |||
|Returns the quantity needed of the specified ingredient for this recipe. | |||
|- | |||
|[[SetNthIngredientQuantity - ConstructibleObject|'''SetNthIngredientQuantity'''(Int ''value'', Int ''n'')]] | |||
|Changes the quantity needed of the specified ingredient for this recipe. | |||
|- | |||
''' | |[[GetWorkbenchKeyword - ConstructibleObject|Keyword '''GetWorkbenchKeyword'''()]] | ||
|Returns the keyword of the workbench needed for this recipe. | |||
|- | |||
|[[SetWorkbenchKeyword - ConstructibleObject|'''SetWorkbenchKeyword'''(String ''keyword'')]] | |||
|Changes the keyword of the workbench needed for this recipe. | |||
|- | |||
|} | |||
== Events == | == Events == | ||
None | None |
Revision as of 04:52, 24 October 2013
Extends: MiscObject Script
Script for the manipulation of constructible object base objects.
Definition
ScriptName ConstructibleObject extends MiscObject
Properties
None
Global Functions
None
Member Functions
None
SKSE Member Functions
Function | Description |
---|---|
Form GetResult() | Returns the form created by this recipe. |
SetResult(Form result) | Changes the form created by this recipe. |
Int GetResultQuantity() | Returns the quantity of the result created by this recipe. |
SetResultQuantity(Int quantity) | Changes the quantity of the result created by this recipe. |
Int GetNumIngredients() | Returns the number of ingredients needed by this recipe. |
Form GetNthIngredient(Int n) | Returns the specified ingredient needed by this recipe. |
SetNthIngredient(Form required, Int n) | Changes the specified ingredient needed by this recipe. |
Int GetNthIngredientQuantity(Int n) | Returns the quantity needed of the specified ingredient for this recipe. |
SetNthIngredientQuantity(Int value, Int n) | Changes the quantity needed of the specified ingredient for this recipe. |
Keyword GetWorkbenchKeyword() | Returns the keyword of the workbench needed for this recipe. |
SetWorkbenchKeyword(String keyword) | Changes the keyword of the workbench needed for this recipe. |
Events
None