Background for Skyrim SE
Member of the clib script
intfunctioncArrayAllAddLVLI(LeveledItemaLeveledList, Form[]aArray, int[]levels, int[]counts)Global

Description

Documentation String

Requirements: None

Documentation Comment

accepts arrays for all three arguments, forms, levelss, countss
Note: the levels and counts arrays use the cWrapInt function. This allows the following:
A 21 index form array and levels and counts arrays of 7 forms each:
Form[0] -> levels[0] -> counts[0]
...
Form[6] -> levels[6] -> counts[6]
Form[7] -> levels[0] -> counts[0]
...
Form[13] -> levels[6] -> counts[6]
Form[14] -> levels[0] -> counts[0]
If all arrays are equal in size it will of course proceed in normal fashion


Parameters

  1. LeveledItemaLeveledList

  2. Form[]aArray

  3. int[]levels

  4. int[]counts


Examples

Auto-Generated Example

LeveledItem myLeveledItem__aLeveledList
Form[] myFormArray__aArray
int[] myIntArray__levels
int[] myIntArray__counts

int returnedValue = clib.cArrayAllAddLVLI(myLeveledItem__aLeveledList, myFormArray__aArray, myIntArray__levels, myIntArray__counts)
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.