Files
7d2dXG/Mods/0B-CustomParticleLoader/CheckStackSize.bat
Nathaniel Cosford 062dfab2cd Patched
2025-05-30 01:04:40 +09:30

16 lines
404 B
Batchfile

echo off
set size=4194304
set client=7DaysToDie.exe
set dedi=7DaysToDieServer.exe
if exist ..\..\%client% (
.\editbin.exe /stack:%size% ..\..\%client%
echo Setting max stack size for %client% to %size%
) ^
else if exist ..\..\%dedi% (
.\editbin.exe /stack:%size% ..\..\%dedi%
echo Setting max stack size for %dedi% to %size%
) ^
else (
echo 7 days to die executable not found!
)
pause