sinfar-haks/hak/HakBuilder.cmd
2026-07-09 15:16:13 +02:00

18 lines
404 B
Batchfile

@echo off
REM ============================
REM Build .hak files from folders
REM ============================
REM Path to nwhak.exe (adjust if needed)
REM set NWHak="nwhak.exe"
REM Loop through all subfolders in current directory
for /d %%F in (*) do (
echo Building %%F_v30.hak from folder %%F ...
nwhak.exe "%%F_v30.hak" "%%F"
)
echo.
echo Done! All .hak files have been created.
timeout 30