Difference between revisions of "SetResultQuanity - ConstructibleObject"

m
Blanked the page
imported>Seigneur Voland
(Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' ConstructibleObject Script Changes the quantity of the result created by a Constructib...")
 
imported>Seigneur Voland
m (Blanked the page)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:SKSE]]
'''SKSE Member of:''' [[ConstructibleObject Script]]


Changes the quantity of the result created by a ConstructibleObject. (This function requires SKSE)
== Syntax ==
<source lang="papyrus">
Function SetResultQuantity(Int Quantity) native
</source>
== Parameters ==
*Quantity : the quantity of result created by the ConstructibleObject
== Return Value ==
None
== Examples ==
<source lang="papyrus">
RecipeArmorIronCuirass.SetResultQuantity(2) ; 2 Armors for 1 today !
RecipeArmorIronCuirass.SetResultQuantity(RecipeArmorSteelCuirass.GetResultQuantity)
</source>
== Notes ==
None
== See Also ==
*[[ConstructibleObject Script]]
*[[MiscObject Script]]
*[[GetResultQuantity - ConstructibleObject]]