Posted October 17, 2016
Looking at your screenshot, put the HUD mod inside that skins folder as it is alongside gzdoom.exe. Then launch the executable with your shortcut.
Can you post the contents of the shortcut? So that we can see what parameters you are using to load it up with Brutal Doom. I mentioned that I use a batch file, so for me the command I use is:
START gzdoom.exe -iwad %iwad% -file %addons% -config %config% -savedir %savedir%
Here I use a number of variables that are set depending on the options that I select in my batch script user prompts.
%iwad% is the Doom WAD to use (e.g. DOOM.WAD)
%addons% is my list of addons to use, e.g. Brutalv20b.pk3
%config% is the path to the config file to use (as I use a separate ini file for each mod/TC)
%savedir% is the path to the save folder to use (as again I use a separate save folder for each mod/TC)
If you are using a standard config and save folder you can ignore these parameters, so launching Brutal Doom would just be:
START gzdoom.exe -iwad doom.wad -file brutalv20b.pk3
The HUD mod being in the Skins folder will then launch automatically.
Can you post the contents of the shortcut? So that we can see what parameters you are using to load it up with Brutal Doom. I mentioned that I use a batch file, so for me the command I use is:
START gzdoom.exe -iwad %iwad% -file %addons% -config %config% -savedir %savedir%
Here I use a number of variables that are set depending on the options that I select in my batch script user prompts.
%iwad% is the Doom WAD to use (e.g. DOOM.WAD)
%addons% is my list of addons to use, e.g. Brutalv20b.pk3
%config% is the path to the config file to use (as I use a separate ini file for each mod/TC)
%savedir% is the path to the save folder to use (as again I use a separate save folder for each mod/TC)
If you are using a standard config and save folder you can ignore these parameters, so launching Brutal Doom would just be:
START gzdoom.exe -iwad doom.wad -file brutalv20b.pk3
The HUD mod being in the Skins folder will then launch automatically.