I'm trying to create a batch file to automatize my GZDoom experience (I don't like a lot of GUIs, I will try to automatize anything I can) and I've faced that I cannot run .pk3 files when trying to load a folder via command line.
Here's what I've tried to do:
Code: Select all
start files/gzdoom -iwad dir/doom2 -file dir/doom_complete_midi.pk3 mods
As an example of what I mean, here's part of the log:
- With Lt. Typhon v6 (viewtopic.php?t=64378) as a mod:
Code: Select all
GZDoom version g4.11.3
W_Init: Init WADfiles.
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/gzdoom.pk3, 672 lumps
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/game_support.pk3, 3307 lumps
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/dir/doom2.wad, 2919 lumps
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/game_widescreen_gfx.pk3, 214 lumps
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/dir/doom_complete_midi.pk3, 3341 lumps
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/mods, 4 lumps
C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/mods:typhon_v6.wad: V_END marker without corresponding V_START found.
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/mods:typhon_v6.wad, 1229 lumps
- With Metadoom v7.1 (viewtopic.php?t=53010) as a mod:
Code: Select all
GZDoom version g4.11.3
W_Init: Init WADfiles.
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/gzdoom.pk3, 672 lumps
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/game_support.pk3, 3307 lumps
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/dir/doom2.wad, 2919 lumps
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/game_widescreen_gfx.pk3, 214 lumps
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/dir/doom_complete_midi.pk3, 3341 lumps
adding C:/Users/ghrv_/Desktop/DOOM Classic - Complete/files/mods, 2 lumps
___
EDIT: So this is fixed now. Someone on Doomworld pointed me towards adding "mods/*" instead of just "mods" on the batch file. While it didn't work, when added "Path=$PROGDIR/mods/*" to the autoload on the portable gzdoom.ini, it works perfectly as I wanted.
Adding this if someone is in need of some workaround like this to autoload whole folders. Thank you.