Difference between revisions of "Con SCOF"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Odessa
(new page proper capitalization)
 
imported>Odessa
(link to debug dumps article)
Line 2: Line 2:
  |origin = NVSE
  |origin = NVSE
  |summary = Runs the console command [[SCOF]] (Set Console Output File) via a script. This saves all subsequent console output during a game session to an external text file in the main game directory. The file name is specified as a string argument, and if it does not exist then it will be created, otherwise it will be appended to.
  |summary = Runs the console command [[SCOF]] (Set Console Output File) via a script. This saves all subsequent console output during a game session to an external text file in the main game directory. The file name is specified as a string argument, and if it does not exist then it will be created, otherwise it will be appended to.
This function can be used to create [[Debug Dumps]].
  |name = Con_SCOF
  |name = Con_SCOF
  |returnType = none
  |returnType = none
Line 11: Line 13:
}}
}}
==See Also==
==See Also==
*[[Debug Dumps]]
*[[SCOF]]
*[[SCOF]]
*[[PrintToConsole|PrintC]]
*[[Print]]
*[[PrintToConsole]](PrintC)
*[[DebugPrint]]
*[[DebugPrint]]
[[Category:Functions_(NVSE)]]
[[Category:Functions_(NVSE)]]
[[Category:Debugging]]
[[Category:Debugging]]

Revision as of 07:25, 21 July 2014

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

A function added by the New Vegas Script Extender.

Description

Runs the console command SCOF (Set Console Output File) via a script. This saves all subsequent console output during a game session to an external text file in the main game directory. The file name is specified as a string argument, and if it does not exist then it will be created, otherwise it will be appended to.

This function can be used to create Debug Dumps.

Syntax

[help]
(none) Con_SCOF FileName:string

Example

con_SCOF "debuglog.txt"

See Also