RefMapArrayGetNext

From the Fallout3 GECK Wiki
Revision as of 23:31, 24 April 2015 by imported>Jazzisparis (Created page with "{{Function |origin = JIP |summary = Returns the <i>Key</i> of the next element of the specified RefMap Array. This is the <i>Key</i> of the element immediately following...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the JIP NVSE Plugin.

Description

Returns the Key of the next element of the specified RefMap Array. This is the Key of the element immediately following the one that was returned by the last call to this function, or to RefMapArrayGetFirst. If no Key follows, the function returns 0.

Syntax

[help]
(key:ref) RefMapArrayGetNext arrName:string 

Or:

(key:ref) RefMapNext arrName:string

Example

set rKey to RefMapArrayGetNext "someRefMap"
set rKey to RefMapNext "someRefMap"

See Also