arma:startup_parameters
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
arma:startup_parameters [2009/09/21 10:12] – added some stuff. snakeman | arma:startup_parameters [2024/08/01 16:10] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== ArmA Startup Parameters ====== | + | ====== ArmA 1 Startup Parameters ====== |
+ | |||
+ | [[https:// | ||
+ | |||
+ | **ArmA 1** aka Armed Assault (ArmA) | ||
These parameters can be configured by creating a new shortcut on your desktop or creating a startup batch file and then adding the appropriate option. | These parameters can be configured by creating a new shortcut on your desktop or creating a startup batch file and then adding the appropriate option. | ||
Line 42: | Line 46: | ||
^ Parameter ^ Function ^ | ^ Parameter ^ Function ^ | ||
- | | -mod= | Allows you to subdivide your addons into different folders, folder names separated by semi-colons. See [[arma:modfolders|modfolders]] for more information. Under Linux you need to separate multiple folders like this: -mod=mod1\; | + | | -mod= | Allows you to subdivide your addons into different folders, folder names separated by semi-colons. See [[arma:moddirs|moddirs]] for more information. Under Linux you need to separate multiple folders like this: -mod=mod1\; |
| -cfg= | Selects a config file like your Server Basic Config file. Processed at startup. | | | -cfg= | Selects a config file like your Server Basic Config file. Processed at startup. | | ||
| -config= | Selects a config file like your Server Config File. Processed after startup. Config file for server specific stuff like admin password and mission selection. | | | -config= | Selects a config file like your Server Config File. Processed after startup. Config file for server specific stuff like admin password and mission selection. | | ||
Line 106: | Line 110: | ||
Note: Real speed-up gained with this is likely to be negligible with Armed Assault, as the loading screens are handled in parallel with the game data being loaded, and the loading itself takes quite long thanks to the amount of data needed. | Note: Real speed-up gained with this is likely to be negligible with Armed Assault, as the loading screens are handled in parallel with the game data being loaded, and the loading itself takes quite long thanks to the amount of data needed. | ||
+ | |||
+ | |||
+ | ====== ArmA 2 Startup Parameters Config File ====== | ||
+ | |||
+ | These settings only apply for ArmA 2 (does not work in Armed Assault). | ||
+ | |||
+ | The config file can be used to put startup parameters in, instead of specifying them at a shortcut / command line. | ||
+ | |||
+ | NOTE: low level parameters are NOT supported. .par file does not (and will not) support some low level parameters, like: -cpuCount, -malloc, -exthreads and -maxMem. The reason is those need to be initialized before any file operations are done. | ||
+ | |||
+ | Pre ArmA 2 build v1.59.**86060** | ||
+ | |||
+ | Location: Inside game directory. | ||
+ | |||
+ | Naming depending on game: ArmA2.par or ArmA2OA.par. | ||
+ | |||
+ | Format: | ||
+ | <code cpp> | ||
+ | class Arg | ||
+ | { | ||
+ | startupParameter=" | ||
+ | startupParameter2=" | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | Example: | ||
+ | <code cpp> | ||
+ | class Arg | ||
+ | { | ||
+ | nosplash=" | ||
+ | skipIntro=" | ||
+ | world=" | ||
+ | mod=" | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | Post ArmA 2 build v1.59.**86060** | ||
+ | |||
+ | Location can be defined with -par=parameterFileName startup parameter. If file extension is .par the formatting described previously is required. With any other extension (like .txt) a plain text is assumed, with one command line option per line. In both cases the file is preprocessed before parsing, allowing C++ style comments and #define-s to be used. | ||
+ | |||
+ | Format: | ||
+ | < | ||
+ | -startupParameter | ||
+ | -startupParameter2=value1; | ||
+ | MissionFileToOpenInTheEditor | ||
+ | </ | ||
+ | |||
+ | Example: | ||
+ | < | ||
+ | -nosplash | ||
+ | -skipIntro | ||
+ | -world=none | ||
+ | -mod=Expansion; | ||
+ | " | ||
+ | </ | ||
+ |
arma/startup_parameters.1253527957.txt.gz · Last modified: 2009/09/21 10:12 (external edit)