SaveGame - Game

Revision as of 01:07, 27 August 2013 by imported>CraftySentinel (Created page with "__NOTOC__ __NOEDITSECTION__ '''SKSE member of:''' Game Script Saves the game as the specified name. == Syntax == <source lang="papyrus">Function SaveGame(string name) ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SKSE member of: Game Script


Saves the game as the specified name.

Syntax

Function SaveGame(string name) native global

Parameters

name

The name you wish to save the game under.


Examples

SaveGame("TestSave") ;Saves the game with the name TestSave


Notes

  • This function is similar to RequestSave() except it also allows for a custom name for the save.
  • Saves cannot be made while the player is in a menu, if you wish to trigger this from within a menu you will have to use Wait() to pause script execution until the player has left the menu otherwise this function will not work.


See Also