diff --git a/README.md b/README.md index f9481d3..cfac2dd 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,13 @@ Decrypts Homeworld Remastered .big files into a usable format ##Download: -[Stable release (1.1)](https://github.com/mon/bigDecrypter/releases/tag/v1.1) +[Stable release](https://github.com/mon/bigDecrypter/releases) ##Usage: +Drag your .big file onto `dragToConvert.bat`. +A file ending with _decrypted will be created in the same directory as the original. + +Or use the command line: `bigDecrypter.exe inputBig.big outputBig.big` The output big is identical in format to Homeworld 2 (it is the same engine, after all), so use any of the many existing tools to extract it. If you install the Remastered tools, Archive.exe will do it for you. Go to Steam, install the Homeworld Remastered Toolkit: diff --git a/dragToConvert.bat b/dragToConvert.bat new file mode 100644 index 0000000..9265137 --- /dev/null +++ b/dragToConvert.bat @@ -0,0 +1,3 @@ +@echo off +bigDecrypter.exe "%1" "%~d1%~p1%~n1_decrypted%~x1" +pause \ No newline at end of file