- Found in:
- SKSE
Description
Wiki Description
Returns the Nth Ingredient of a ConstructibleObject as Form. (This function requires SKSE)
Documentation Comment
Gets/Sets the Nth ingredient required
Caveats
CK Wiki - Notes
None
Parameters
intn
CK Wiki Description
the Nth Ingredient of the ConstructibleObject
Examples
ConstructibleObject Recipe = RecipeArmorIronCuirass
Form Ing01 = Recipe.GetNthIngredient(0) ; Ing01 = LeatherStrips
MiscObject Ingot = RecipeArmorIronCuirass.GetNthIngredient(RecipeArmorIronCuirass.GetNumIngredients - 1) as MiscObject ; Ingot = IngotIronAuto-Generated Example
int myInt__n
Form returnedValue = myConstructibleObject__toCallFunctionOn.GetNthIngredient(myInt__n)