SaveGame

From GECK
Jump to: navigation, search


A function included in the GECK for Fallout 3.

Description

Used to create named savegames and optionally write save information to a dump file.

Console Functions are normally exclusively for use in the in-game Console (accessible by pressing "~").

With JIP LN NVSE Plugin, any console function can be used in scripts with the Console function.

Syntax

[help]
SaveGame fileName:string createDumpFlag:int 

Or:

save fileName:string createDumpFlag:int

Example

SaveGame Test
SaveGame 0032.te 1

Notes

  • The first example above will create a new savegame named "Test" without an accompanying dump file.
  • The second example above will create a new savegame named "0032.te" with dump file "0032.te.fos.txt" located in the Fallout3/Saves directory. The game will immediately minimize itself to open the dump file.
  • This is also available as an Event Handler in NVSE.

See Also