SetNthIngredient - ConstructibleObject

From the CreationKit Wiki
Revision as of 05:33, 5 August 2012 by imported>Seigneur Voland (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' ConstructibleObject Script Sets the Nth Ingredient of a ConstructibleObject to the spe...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

SKSE Member of: ConstructibleObject Script

Sets the Nth Ingredient of a ConstructibleObject to the specified Form. (This function requires SKSE)

Syntax

Function SetNthIngredient(Form Ing, Int n) native

Parameters

  • Ing: the new Form of the Ingredient
  • n: the Nth Ingredient of the ContructibleObject

Return Value

None

Examples

; Replaces in RecipeArmorIronCuirass LeatherStrips by DaedraHeart & IngotIron by SteelIron
ConstructibleObject Recipe = RecipeArmorIronCuirass
Recipe.SetNthIngredient(DaedraHeart, 0)
RecipeArmorIronCuirass.SetNthIngredient(SteelIron, 1)

; Replaces the n Ingredient of a recipe by a corresponding Form from a FormList
(ConstructibleObjectList.GetAt(i) as ConstructibleObject).SetNthIngredient(IngotList.GetAt(i), n)

Notes

None

See Also