Initial commit

This commit is contained in:
NTCat 2025-02-05 00:30:09 -08:00
commit 74cad65082
13 changed files with 51 additions and 0 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# Disable Git line ending conversion, to prevent packwiz index hashes changing when committing from Windows
* -text

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
# Exclude exported CurseForge zip files
# Exclude exported Modrinth modpacks
*.mrpack

8
client/.packwizignore Normal file
View File

@ -0,0 +1,8 @@
# .packwizignore follows the same format as .gitignore, and can be used to exclude unwanted files from pack exports
# See https://git-scm.com/docs/gitignore
# Exclude README
*.zip
/config/placeholder.txt
/mods/placeholder.txt
/README.md

View File

View File

5
client/refresh.bat Normal file
View File

@ -0,0 +1,5 @@
@Echo off
Pushd "%~dp0"
packwiz refresh
popd
exit

0
newmods/placeholder.txt Normal file
View File

5
refresh.bat Normal file
View File

@ -0,0 +1,5 @@
@Echo OFF
set masterfolder=%cd%
start %cd%/client/refresh.bat
start %cd%/server/refresh.bat
exit

8
server/.packwizignore Normal file
View File

@ -0,0 +1,8 @@
# .packwizignore follows the same format as .gitignore, and can be used to exclude unwanted files from pack exports
# See https://git-scm.com/docs/gitignore
# Exclude README
*.zip
/config/placeholder.txt
/mods/placeholder.txt
/README.md

View File

View File

5
server/refresh.bat Normal file
View File

@ -0,0 +1,5 @@
@Echo off
Pushd "%~dp0"
packwiz refresh
popd
exit

12
setnewmods.bat Normal file
View File

@ -0,0 +1,12 @@
@Echo OFF
echo setting root..
set masterfolder=%cd%
echo Copying to Client
xcopy /e /v /y "%cd%\newmods" "%cd%\client\mods"
echo Copying to Server
xcopy /e /v /y "%cd%\newmods" "%cd%\server\mods"
echo Deleting leftover mods
del "%cd%\newmods\*.*" /q
echo Starting refresh
start refresh.bat
exit