Engine:CVAR startup

From AddOn Studio
Jump to navigation Jump to search
Console commands

Path for the startup script file.

set startup 'startup.cfg' 

Arguments[edit]

  • name - 'startup'
  • value - Relative asset path for the startup script file. Default value is unset.

Associations[edit]

  • Is by default placed in the 'global' context.

Details[edit]

Set a script file to be run after basic engine systems are started. If no value is set, no startup script will be run.

The similar engine config script 'config.cfg' file is run after basic module initialization. The config file is a place where the startup script can be set.

Startup stages:

  • Process load
  • Modules initialization
    • Commands and variables with default values are created
  • Config script is run 'config.cfg'
  • Modules start
    • Use of default or config set variables or other changes
  • Startup script is run 'startup.cfg'
  • Server module load
  • Engine run

Using[edit]

For example, the 'map' and 'module' load defaults can be unset, and then no map or module will be loaded. The setup script can then be used to provide a more sophisticated configuration. This includes choosing which services are inittially started, and so on.

Examples[edit]

Default values[edit]

> startup
'startup' is ''

In a config file named 'config.cfg'

...
startup startup.cfg

Notes[edit]

See also[edit]