This commit is contained in:
SFKao 2025-03-03 15:35:18 +01:00
commit 9a8843b4ae
97 changed files with 30 additions and 0 deletions

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
*
!mods/*
!resourcepacks/*
!datapacks/*
!.gitignore
!*.bat
!*/

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
mods/Powah-6.1.6.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
mods/ae2wtlib-19.2.1.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
mods/fabrictailor-2.5.0.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
mods/guideme-21.1.1.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
mods/no-telemetry-1.9.0.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
mods/switchy-2.9.7+1.21.jar Normal file

Binary file not shown.

Binary file not shown.

BIN
mods/watermedia-2.1.19.jar Normal file

Binary file not shown.

Binary file not shown.

BIN
mods/wthit-neo-12.5.1.jar Normal file

Binary file not shown.

Binary file not shown.

20
updateMods.bat Normal file
View File

@ -0,0 +1,20 @@
@echo off
pushd %~dp0
git --version > nul 2>&1
if %errorlevel% neq 0 (
echo Git no esta instalado
echo Instalalo desde https://git-scm.com/downloads
goto end
) else (
if not exist .git (
git init
git remote add origin https://git.sfkao.net/SFKao/Las_3000-modpack.git
)
call git pull --rebase --autostash
if %errorlevel% neq 0 (
REM Si pasa algo
echo Han habido errores actualizando, contactar con SFKao
goto end
)
)
:end