From 309ab9505a5b09d265ef0f40822360db1372e336 Mon Sep 17 00:00:00 2001 From: Alan O Date: Mon, 3 Jul 2023 01:10:46 -0400 Subject: [PATCH] Separated out builders for Trent --- README.md | 2 +- build.cmd => build_double.cmd | 0 build_loot.cmd | 7 +++++++ build_recipes.cmd | 3 +++ 4 files changed, 11 insertions(+), 1 deletion(-) rename build.cmd => build_double.cmd (100%) create mode 100644 build_loot.cmd create mode 100644 build_recipes.cmd diff --git a/README.md b/README.md index 7f5d5e3..7c1732b 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ Trent keeps asking me for randomizers, so I'm automating the process now so it's easy. -on windows: `.\build.cmd` +on windows: `.\build.cmd packName` diff --git a/build.cmd b/build_double.cmd similarity index 100% rename from build.cmd rename to build_double.cmd diff --git a/build_loot.cmd b/build_loot.cmd new file mode 100644 index 0000000..622cd47 --- /dev/null +++ b/build_loot.cmd @@ -0,0 +1,7 @@ +cd .\loot_randomizer\ +python randomize.py +cd .. + +copy loot_randomizer\random_loot.zip .\build\loot_%1.zip + +del /q .\loot_randomizer\random_loot.zip \ No newline at end of file diff --git a/build_recipes.cmd b/build_recipes.cmd new file mode 100644 index 0000000..85fb1e1 --- /dev/null +++ b/build_recipes.cmd @@ -0,0 +1,3 @@ +cd .\mcrecipescrambler\ +python .\scrambler.py ..\build\recipes_%1.zip +cd .. \ No newline at end of file