Setup automated build scripts for haks #2
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Setup automated build scripts for the haks to turn the contents of the repository into useable haks by the game.
Requirements:
Nice to haves:
For this purpose to build haks off app "nwhak.exe" I made this script it does not fills nearly all the leeds of the issue but it can eat folders and make haks out of them
`@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.
pause
`