Difference between revisions of "SetResult - ConstructibleObject"
Jump to navigation
Jump to search
imported>Seigneur Voland m |
imported>Seigneur Voland m |
||
Line 21: | Line 21: | ||
; Changes the Iron Cuirass created by the Steel Cuirass | ; Changes the Iron Cuirass created by the Steel Cuirass | ||
RecipeArmorIronCuirass.SetResult(ArmorSteelCuirass) | RecipeArmorIronCuirass.SetResult(ArmorSteelCuirass) | ||
RecipeArmorIronCuirass.SetResult(RecipeArmorSteelCuirass.GetResult()) | |||
</source> | </source> | ||
Revision as of 08:26, 5 August 2012
SKSE Member of: ConstructibleObject Script
Changes the Form created by a ConstructibleObject. (This function requires SKSE)
Syntax
Function SetResult(Form Result) native
Parameters
- Result : the new Form created by the ContructibleObject
Return Value
None
Examples
; Changes the Iron Cuirass created by the Steel Cuirass
RecipeArmorIronCuirass.SetResult(ArmorSteelCuirass)
RecipeArmorIronCuirass.SetResult(RecipeArmorSteelCuirass.GetResult())
Notes
None