Allah 6 years ago
parent
commit
4299ee0fd6
7 changed files with 9 additions and 4 deletions
  1. 0 0
      CDB/.gitkeep
  2. 0 0
      PAK/.gitkeep
  3. 3 4
      README.md
  4. 1 0
      compile-all.bat
  5. 1 0
      compile-cdb.bat
  6. 1 0
      compile-pak.bat
  7. 3 0
      extract-vanilla.bat

+ 0 - 0
CDB/.gitkeep


+ 0 - 0
PAK/.gitkeep


+ 3 - 4
README.md

@@ -3,10 +3,9 @@ Put the files you edited into CDB and PAK. You'll only work on the files you're
 Refer to the [Corrupted](https://gitlab.com/alaah/dead-cells-corrupted-mode) files for an example.
 
 # Howto
-Edit config to your needs, and make sure the Dead Cells path is correct.
-Run extract-vanilla to get your vanilla directories.
-Put the files to add/override into PAK and CDB.
-Then you can use the "compilers".
+Edit `config.bat` in a text editor to your needs, and **make sure the Dead Cells path is correct**.
+Run `extract-vanilla.bat` to get a fresh setup.
+Put the files to add/override into PAK and CDB. Leave PAKV and CDBV be, and use them for reference read-only.
 
 # Files
 * compile-all – exec compile-cdb and compile-pak

+ 1 - 0
compile-all.bat

@@ -1,2 +1,3 @@
+@echo off
 call compile-cdb.bat
 call compile-pak.bat

+ 1 - 0
compile-cdb.bat

@@ -1,3 +1,4 @@
+@echo off
 call config.bat
 mkdir CDB0
 xcopy /s /q /y "%~dp0CDBV" "%~dp0CDB0"

+ 1 - 0
compile-pak.bat

@@ -1,3 +1,4 @@
+@echo off
 call config.bat
 "%dcpath%\ModTools\PAKTool.exe" -CreateDiffPak -RefPak "%dcpath%\res.pak" -InDir "%~dp0PAK" -OutPak "%outpak%"
 if %runafter%==1 ("%dcpath%\deadcells.exe")

+ 3 - 0
extract-vanilla.bat

@@ -1,4 +1,7 @@
+@echo off
 call config.bat
+mkdir "%~dp0PAK"
+mkdir "%~dp0CDB"
 mkdir "%~dp0PAKV"
 mkdir "%~dp0CDBV"
 "%dcpath%\ModTools\PAKTool.exe" -Expand -OutDir "%~dp0PAKV" -RefPak "%dcpath%\res.pak"