sinfar-haks/hak/HakBuilder.cmd
2025-09-16 08:40:18 +02:00

18 lines
391 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.hak from folder %%F ...
nwhak.exe "%%F.hak" "%%F"
)
echo.
echo Done! All .hak files have been created.
pause