Difference between revisions of "GetGameLoaded"
Jump to navigation
Jump to search
imported>Scruggs |
|||
(8 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
A command for [[:Category:Oblivion Script Extender|Oblivion Script Extender]] | |||
Syntax: | '''Syntax:''' | ||
(gameLoaded:bool) GetGameLoaded | |||
Returns true if a savegame has been loaded since the function was last called. | Returns true if a savegame has been loaded since the function was last called. | ||
Notes | ==Notes== | ||
* | * Returns true once per ''script'', not per object. If you have 2 objects with the same script, '''GetGameLoaded''' will return true for only one of them. And if the script uses '''GetGameLoaded''' more than once, it will return true for only the first use. | ||
[[Category:OBSE Functions]] [[Category:OBSE Flow Control Functions]] [[Category:OBSE Miscellaneous Functions]] | == See Also == | ||
*[[GetGameRestarted]] | |||
<!--[[Category:OBSE Functions]] | |||
[[Category:OBSE Flow Control Functions]] | |||
[[Category:OBSE Miscellaneous Functions]]--> | |||
[[Category:Functions]] | |||
[[Category:Functions (OBSE)]] | |||
[[Category:Miscellaneous Functions]] | |||
[[Category:Miscellaneous Functions (OBSE)]] |
Latest revision as of 07:18, 25 December 2022
A command for Oblivion Script Extender
Syntax:
(gameLoaded:bool) GetGameLoaded
Returns true if a savegame has been loaded since the function was last called.
Notes[edit | edit source]
- Returns true once per script, not per object. If you have 2 objects with the same script, GetGameLoaded will return true for only one of them. And if the script uses GetGameLoaded more than once, it will return true for only the first use.