Difference between revisions of "AddForm - LeveledItem"
Jump to navigation
Jump to search
imported>JustinOther (Removed GetGameLoaded as v1.6+ fixes the bug.) |
imported>Chesko (Noting that function does not work.) |
||
Line 23: | Line 23: | ||
CoolItems.AddForm(Axe, 5, 2) | CoolItems.AddForm(Axe, 5, 2) | ||
</source> | </source> | ||
== Notes == | |||
* This function *does not work*. Tested on Skyrim 1.9.32.0.8. See Discussion tab. | |||
== See Also == | == See Also == | ||
*[[LeveledItem Script]] | *[[LeveledItem Script]] | ||
*[[Revert - LeveledItem]] | *[[Revert - LeveledItem]] |
Revision as of 09:25, 25 August 2013
Member of: LeveledItem Script
Adds the given form to the leveled list.
Syntax
Function AddForm(Form apForm, int auiLevel, int auiCount) native
Parameters
- apForm: Form to add to the leveled list
- auiLevel: Level to add form under
- auiCount: Number of items to add
Return Value
None.
Examples
; Add 2 axes to the list at level 5
CoolItems.AddForm(Axe, 5, 2)
Notes
- This function *does not work*. Tested on Skyrim 1.9.32.0.8. See Discussion tab.