Difference between revisions of "SetResult - ConstructibleObject"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Seigneur Voland
(Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' ConstructibleObject Script Changes the Form created by a ConstructibleObject. (This fu...")
 
imported>Seigneur Voland
m
Line 8: Line 8:
== Syntax ==
== Syntax ==
<source lang="papyrus">
<source lang="papyrus">
Function SetResult(Form NewResult) native
Function SetResult(Form Result) native
</source>
</source>


== Parameters ==
== Parameters ==
*NewResult : the new Form created by the ContructibleObject
*Result : the new Form created by the ContructibleObject


== Return Value ==
== Return Value ==

Revision as of 07:59, 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)

Notes

None

See Also