Separated out builders for Trent

This commit is contained in:
Alan O'Cull 2023-07-03 01:10:46 -04:00
parent 568dfa6f17
commit 309ab9505a
4 changed files with 11 additions and 1 deletions

View File

@ -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`

7
build_loot.cmd Normal file
View File

@ -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

3
build_recipes.cmd Normal file
View File

@ -0,0 +1,3 @@
cd .\mcrecipescrambler\
python .\scrambler.py ..\build\recipes_%1.zip
cd ..