X Tutup
×
Create a new article
Write your page title here:
We currently have 92,700 articles on Fallout Wiki. Type your article name above or click on one of the titles below and start writing!



Fallout Wiki
92,700Articles
☢  Independent Fallout Wiki Resources  ☢

AddForm - LeveledItem

Resource:Creation Kit > AddForm - LeveledItem


Member of: Resource:Creation Kit/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)

See Also

X Tutup