Difference between revisions of "SetNthIngredient - ConstructibleObject"
Jump to navigation
Jump to search
imported>Seigneur Voland |
imported>Seigneur Voland m |
||
Line 14: | Line 14: | ||
*Ing : the new Form of the Ingredient | *Ing : the new Form of the Ingredient | ||
*n : the Nth Ingredient of the | *n : the Nth Ingredient of the ConstructibleObject | ||
== Return Value == | == Return Value == |
Revision as of 09:00, 5 August 2012
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 ConstructibleObject
Return Value
None
Examples
; Replaces in RecipeArmorIronCuirass LeatherStrips by DaedraHeart & IngotIron by IngotSteel
ConstructibleObject Recipe = RecipeArmorIronCuirass
Recipe.SetNthIngredient(DaedraHeart, 0)
RecipeArmorIronCuirass.SetNthIngredient(IngotSteel, 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