UltimateZoneBuilder/Documents/cmdargs.txt
2008-09-12 16:39:14 +00:00

40 lines
1.5 KiB
Text

Doom Builder 2 command-line arguments
==========================================================================================
Usage:
builder.exe [wadfile] [-map mapname] [-cfg configname]
==========================================================================================
Parameters:
- wadfile
This is a .WAD file to load immediately after Doom Builder has started up. Unless -map
and -cfg are used, this will show the map-options dialog.
- map
Where 'mapname' is the name of the map (map header lump name) such as MAP01 or E1M1. When
specified, this will indicate the map to load from the specified wad file. Use in
combination with -cfg to provide the required information to skip the map-options dialog.
- cfg
Where 'configname' is a game configuration filename, for example, "ZDoom_DoomHexen.cfg".
Do NOT include the path, all game configurations must be in the Configurations subfolder.
When used in combination with -map this will provide the required information to load a
map directly and skip the map-options dialog.
==========================================================================================
Examples:
This loads the file "Ubermegawad.wad" after Doom Builder is initialized and shows the
map-options dialog:
builder.exe "C:\Games\Doom\My Maps\Ubermegawad.wad"
This loads the file "Ubermegawad.wad" after Doom Builder is initialized and shows the
map MAP23 with the game configuration for Doom 2:
builder.exe "C:\Games\Doom\My Maps\Ubermegawad.wad" -map MAP23 -cfg "Doom2.cfg"