Background for Skyrim SE

JFormMap


Inheritance Tree

No indexed scripts extend this script.

Properties
Events
Functions
intfunctionobject()NativeGlobal

creates new container object. returns container's identifier (unique integer number).

intfunctiongetInt(intobject, Formkey, intdefault=0)NativeGlobal

Returns the value associated with the @key. If not, returns @default value

floatfunctiongetFlt(intobject, Formkey, floatdefault=0.0)NativeGlobal
stringfunctiongetStr(intobject, Formkey, stringdefault="")NativeGlobal
intfunctiongetObj(intobject, Formkey, intdefault=0)NativeGlobal
FormfunctiongetForm(intobject, Formkey, Formdefault=NONE)NativeGlobal
voidfunctionsetInt(intobject, Formkey, intvalue)NativeGlobal

Inserts @key: @value pair. Replaces existing pair with the same @key

voidfunctionsetFlt(intobject, Formkey, floatvalue)NativeGlobal
voidfunctionsetStr(intobject, Formkey, stringvalue)NativeGlobal
voidfunctionsetObj(intobject, Formkey, intcontainer)NativeGlobal
voidfunctionsetForm(intobject, Formkey, Formvalue)NativeGlobal
boolfunctionhasKey(intobject, Formkey)NativeGlobal

Returns true, if the container has @key: value pair

intfunctionvalueType(intobject, Formkey)NativeGlobal

Returns type of the value associated with the @key.
0 - no value, 1 - none, 2 - int, 3 - float, 4 - form, 5 - object, 6 - string

intfunctionallKeys(intobject)NativeGlobal

Returns a new array containing all keys

Form[]functionallKeysPArray(intobject)NativeGlobal
intfunctionallValues(intobject)NativeGlobal

Returns a new array containing all values

boolfunctionremoveKey(intobject, Formkey)NativeGlobal

Removes the pair from the container where the key equals to the @key

intfunctioncount(intobject)NativeGlobal

Returns count of pairs in the conainer

voidfunctionclear(intobject)NativeGlobal

Removes all pairs from the container

voidfunctionaddPairs(intobject, intsource, booloverrideDuplicates)NativeGlobal

Inserts key-value pairs from the source container

FormfunctionnextKey(intobject, FormpreviousKey=NONE, FormendKey=NONE)NativeGlobal

[DEV SERVER] Loading description...

FormfunctiongetNthKey(intobject, intkeyIndex)NativeGlobal

Retrieves N-th key. negative index accesses items from the end of container counting backwards.
Worst complexity is O(n/2)

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.