From 72ee88eee93cdb81c2fde24f74336adb112b8443 Mon Sep 17 00:00:00 2001 From: Will Toohey Date: Wed, 4 Mar 2015 13:19:41 +1000 Subject: [PATCH] Add easy converter, make readme more general to avoid per-version updates --- README.md | 6 +++++- dragToConvert.bat | 3 +++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 dragToConvert.bat 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