Background for Skyrim SE
Member of the StorageUtil script
boolfunctionIntListCopy(FormObjKey, stringKeyName, int[]copy)NativeGlobal

Description

Documentation Comment

Creates a copy of array on the given storage list at the given object+key,
overwriting any list that might already exists.

Returns true on success.

ObjKey: form to find value on. Set none to find global list value.
KeyName: name of list.
copy[]: The papyrus array with the content you wish to copy over into StorageUtil
[optional] filler: When adding empty elements to the list this will be used as the default value


Parameters

  1. FormObjKey

  2. stringKeyName

  3. int[]copy


Examples

Auto-Generated Example

Form myForm__ObjKey
string myString__KeyName
int[] myIntArray__copy

bool returnedValue = StorageUtil.IntListCopy(myForm__ObjKey, myString__KeyName, myIntArray__copy)
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.