Difference between revisions of "Ar DumpID"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Odessa
(Created page with "{{Function |origin = NVSE |summary = Identically to Ar_Dump, prints the contents of an array to the console in a human readable format. However, the array is specified b...")
 
imported>Odessa
(sqv note)
 
Line 2: Line 2:
  |origin = NVSE
  |origin = NVSE
  |summary = Identically to [[Ar_Dump]], prints the contents of an array to the console in a human readable format. However, the array is specified by its int ID instead of variable name. Intended usage is in-game debugging via the console.
  |summary = Identically to [[Ar_Dump]], prints the contents of an array to the console in a human readable format. However, the array is specified by its int ID instead of variable name. Intended usage is in-game debugging via the console.
You can find out the ID number for all arrays attached to a quest in game via the console command, [[ShowQuestVars]].


  |name = Ar_DumpID
  |name = Ar_DumpID
Line 15: Line 17:
==See Also==
==See Also==
*[[Ar_Dump]]
*[[Ar_Dump]]
*[[Scof]]
*[[SCOF]]
*[[Array Variables]]
*[[Array Variables]]
[[Category:Functions_(NVSE)]]
[[Category:Functions_(NVSE)]]
[[Category:Array Variables]]
[[Category:Array Variables]]
[[Category:Debugging]]
[[Category:Debugging]]

Latest revision as of 08:32, 21 July 2014

< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Identically to Ar_Dump, prints the contents of an array to the console in a human readable format. However, the array is specified by its int ID instead of variable name. Intended usage is in-game debugging via the console.

You can find out the ID number for all arrays attached to a quest in game via the console command, ShowQuestVars.

Syntax

[help]
(None) Ar_DumpID ArrayID:int

Example

Ar_DumpID 1

See Also