When starting a Zandronum server with Doom Explorer, Zandronum doesn't get the correct paths for the PWAD directory. It doesn't matter if I'm starting via Doom Explorer or create a batch first.
When looking into the created rsp file it looks like this:
Code
+deathmatch 1
-iwad "D:\deadeye6\Desktop\Doom Explorer\IWAD\doom2.wad"
-file "PWAD\dk_dm_pack.wad"
-port 10666
-upnp
+exec "Deathmatch LAN.cfg"
As a workaround I edit the -iwad and -file lines like this:
Code
-iwad "..\..\..\IWAD\doom2.wad"
-file "..\..\..\PWAD\dk_dm_pack.wad"
or:
Code
-iwad "D:\deadeye6\Desktop\Doom ExplorerIWAD\doom2.wad"
-file "D:\deadeye6\Desktop\Doom Explorer\PWAD\dk_dm_pack.wad"
I'm only using relative paths in the Doom Explorer config, so I prefer the first example.