Compare commits
11 Commits
a3e89c5f5a
...
v1.0.1-aet
| Author | SHA1 | Date | |
|---|---|---|---|
|
e028c4616b
|
|||
|
5f313c51a6
|
|||
|
1b8bdc60ce
|
|||
|
894f1dda36
|
|||
|
48e61094c8
|
|||
|
300f12210a
|
|||
|
159f57f967
|
|||
|
e92f63bffd
|
|||
|
4bbda367a4
|
|||
| 5430c55f00 | |||
| 1c98320f1a |
193
README.md
193
README.md
@ -50,191 +50,40 @@ docker run --pull=always \
|
||||
|
||||
或者,需要从 [https://github.com/packwiz/packwiz-installer/releases](这里) 下载最新最热的 Installer,以安装需要的文件。
|
||||
|
||||
## 面板服一键启动方案
|
||||
### 部署到 Simpfun
|
||||
|
||||
仓库根目录提供了:
|
||||
在 Simpfun 申请一个服务器实例,选择多 JDK 版本的镜像。`B+.I.2XL.L` 规格的服务器是个不错的选择。因为我每次只开一天,所以天天签到拿到的积分会很够。
|
||||
|
||||
- `start.sh`:仓库内真正负责安装与启动服务端的主脚本
|
||||
- `panel-start.sh`:专门给面板服上传使用的薄入口脚本
|
||||
在 `管理 - 实例端口` 处花 100 积分申请一个新的端口用于 Simple Voice Chat 模组。
|
||||
|
||||
推荐你在面板服里这样用:
|
||||
下载 [panel-start.sh](https://gitea.service.jazzwhom.top/Passthem/pt-minecraft-modpack/raw/branch/main/panel-start.sh) 到本地,编辑 `PT_SERVER="${PT_SERVER:-server-02-skygrid}"` 一行为你需要的服务器配置文件文件夹名。
|
||||
|
||||
1. 直接下载仓库里的 `panel-start.sh`
|
||||
2. 上传到面板
|
||||
3. 如果面板要求固定入口文件名是 `start.sh`,就把它重命名成 `start.sh`
|
||||
4. 按需要修改里面的变量
|
||||
5. 点击运行
|
||||
有可能会出现 packwiz 的各种包下不下来的情况(因为国内网络问题)所以,你可能需要手动下载 [packwiz-installer.jar](https://github.com/packwiz/packwiz-installer/releases/latest/download/packwiz-installer.jar) 和 [packwiz-installer-bootstrap.jar](https://github.com/packwiz/packwiz-installer-bootstrap/releases/latest/download/packwiz-installer-bootstrap.jar),并放置到 `/pt-minecraft-modpack/.pt-panel-runtime/downloads` 文件夹下。
|
||||
|
||||
`start.sh` 现在**直接复用官方 `packwiz-installer-bootstrap` / `packwiz-installer`**,而不是自己手动管理模组列表。
|
||||
#### 配置一些文件
|
||||
|
||||
它会自动完成这些事情:
|
||||
在 `server.properties` 编辑 `server-port` 为主端口。编辑:
|
||||
|
||||
1. 选择一个具体服务端 pack(例如 `server-01-random-block`)
|
||||
2. 读取该 pack 的 `pack.toml` 中的 Minecraft / Fabric 版本
|
||||
3. 下载并执行 Fabric 官方 installer,生成服务端启动 jar
|
||||
4. 下载并执行 `packwiz-installer-bootstrap`
|
||||
5. 用 `packwiz-installer --side server` 根据远程或本地 `pack.toml` 自动同步当前服务端需要的模组
|
||||
6. 自动写入 `eula.txt`
|
||||
7. 最后启动服务端
|
||||
|
||||
## 方案一:上传整个仓库后直接运行
|
||||
|
||||
如果你的面板允许你上传整个仓库,那么直接运行:
|
||||
|
||||
```bash
|
||||
PT_SERVER="server-01-random-block" bash start.sh
|
||||
```env
|
||||
online-mode=true
|
||||
spawn-protection=0
|
||||
```
|
||||
|
||||
因为这时 `start.sh` 会直接使用仓库里的本地 `server-01-random-block/pack.toml`。
|
||||
在 `/pt-minecraft-modpack/config/voicechat/voicechat-server.properties` 编辑 `port` 为附端口。编辑:
|
||||
|
||||
如果仓库里只有一个 `server-*` 目录,不传 `PT_SERVER` 也可以自动选择;但只要有多个,建议明确传。
|
||||
|
||||
### 常用示例
|
||||
|
||||
```bash
|
||||
PT_SERVER="server-01-random-block" PT_JAVA_ARGS="-Xms1G -Xmx1G" bash start.sh
|
||||
```env
|
||||
# The distance to which the voice can be heard
|
||||
max_voice_distance=64.0
|
||||
# The distance to which the voice can be heard when whispering
|
||||
whisper_distance=32.0
|
||||
```
|
||||
|
||||
```bash
|
||||
PT_SERVER="server-02-xxx" bash start.sh
|
||||
```
|
||||
#### 运营时注意
|
||||
|
||||
## 方案二:只下载并上传 `panel-start.sh`
|
||||
在 `管理 - 当前实例信息` 右边的小问号,可以使用积分兑换上行流量。10 积分兑换 1G。
|
||||
|
||||
如果你只想下载一个脚本文件再上传到面板,那么请直接使用:
|
||||
这里的上行流量值,要时常刷新以了解流量消耗。
|
||||
|
||||
- 仓库文件:`panel-start.sh`
|
||||
如果积分不足以兑换流量,可以在控制台的 `积分` 值右边的加号充值。12CNY 兑换 600 积分。
|
||||
|
||||
你上传后:
|
||||
|
||||
- 如果面板固定执行文件名就是 `start.sh`,请把 `panel-start.sh` 重命名为 `start.sh`
|
||||
- 然后编辑这几个变量:
|
||||
|
||||
```sh
|
||||
REPO_URL="https://gitea.service.jazzwhom.top/Passthem/pt-minecraft-modpack"
|
||||
REPO_REF="main"
|
||||
PT_SERVER="server-01-random-block"
|
||||
PT_JAVA_ARGS="-Xms1G -Xmx1G"
|
||||
```
|
||||
|
||||
`panel-start.sh` 默认会额外下载 `packwiz-installer.jar`,并通过本地文件方式交给 bootstrap 使用,适合 GitHub API 受限(例如 403)的面板环境。
|
||||
|
||||
这个脚本会:
|
||||
|
||||
1. 从 Gitea 下载整个仓库归档
|
||||
2. 解压到当前目录下的 `pt-minecraft-modpack/`
|
||||
3. 额外下载 `packwiz-installer.jar`
|
||||
4. 自动调用仓库里的 `start.sh`
|
||||
|
||||
### 直接下载链接
|
||||
|
||||
你可以直接下载这个文件:
|
||||
|
||||
- `panel-start.sh`:
|
||||
`https://gitea.service.jazzwhom.top/Passthem/pt-minecraft-modpack/raw/branch/main/panel-start.sh`
|
||||
|
||||
## 方案三:直接复制 `panel-start.sh` 内容到面板里
|
||||
|
||||
如果你的面板不能单独下载文件,但允许你粘贴脚本内容,也可以把下面这段直接保存成面板入口脚本:
|
||||
|
||||
> 注意:请确保保存为 **LF 换行**,不要是 Windows 的 CRLF。
|
||||
|
||||
```sh
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
REPO_URL="https://gitea.service.jazzwhom.top/Passthem/pt-minecraft-modpack"
|
||||
REPO_REF="main"
|
||||
PT_SERVER="server-01-random-block"
|
||||
INSTALL_DIR="$(pwd)/pt-minecraft-modpack"
|
||||
ARCHIVE_PATH="$(pwd)/pt-minecraft-modpack.tar.gz"
|
||||
TMP_DIR="$(pwd)/pt-minecraft-modpack.__tmp"
|
||||
PT_JAVA_ARGS="-Xms1G -Xmx1G"
|
||||
|
||||
rm -rf "$TMP_DIR"
|
||||
mkdir -p "$TMP_DIR"
|
||||
|
||||
if command -v curl >/dev/null 2>&1; then
|
||||
curl -fL --retry 3 --retry-delay 2 -o "$ARCHIVE_PATH" "$REPO_URL/archive/$REPO_REF.tar.gz"
|
||||
elif command -v wget >/dev/null 2>&1; then
|
||||
wget -O "$ARCHIVE_PATH" "$REPO_URL/archive/$REPO_REF.tar.gz"
|
||||
else
|
||||
echo "缺少 curl 或 wget" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
tar -xzf "$ARCHIVE_PATH" -C "$TMP_DIR"
|
||||
|
||||
EXTRACTED_DIR="$(find "$TMP_DIR" -mindepth 1 -maxdepth 1 -type d | head -n 1)"
|
||||
if [ -z "$EXTRACTED_DIR" ]; then
|
||||
echo "解压失败" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
rm -rf "$INSTALL_DIR"
|
||||
mv "$EXTRACTED_DIR" "$INSTALL_DIR"
|
||||
rm -rf "$TMP_DIR" "$ARCHIVE_PATH"
|
||||
|
||||
cd "$INSTALL_DIR"
|
||||
PT_REPO_URL="$REPO_URL" \
|
||||
PT_REPO_REF="$REPO_REF" \
|
||||
PT_SERVER="$PT_SERVER" \
|
||||
PT_JAVA_ARGS="$PT_JAVA_ARGS" \
|
||||
bash ./start.sh
|
||||
```
|
||||
|
||||
## 环境兼容性说明
|
||||
|
||||
有些面板不是用 `bash start.sh`,而是直接用 `sh start.sh`。因此:
|
||||
|
||||
- 面板入口脚本建议使用 `panel-start.sh` 这种 `sh` 兼容的薄脚本
|
||||
- 仓库内真正运行 Minecraft 的脚本继续使用 `bash`
|
||||
- 如果你是从 Windows 编辑/复制脚本,请务必使用 **LF** 换行,不要用 **CRLF**
|
||||
|
||||
## 环境要求
|
||||
|
||||
- 面板入口脚本需要:`sh`
|
||||
- 仓库主脚本 `start.sh` 需要:`bash`
|
||||
- 必须有 `java`
|
||||
- 必须有 `curl` 或 `wget`
|
||||
- 远程拉取方案还需要 `tar`
|
||||
- 建议有常见基础命令:`grep`、`sed`、`awk`、`find`
|
||||
- 服务器需要能联网下载:
|
||||
- 你的 Gitea 仓库归档
|
||||
- Fabric installer
|
||||
- `packwiz-installer-bootstrap`
|
||||
- Modrinth 模组文件
|
||||
|
||||
## `start.sh` 可选环境变量
|
||||
|
||||
- `PT_SERVER`:选择要安装/启动的服务端目录名,例如 `server-01-random-block`
|
||||
- `PT_REPO_URL`:仓库地址,例如 `https://gitea.service.jazzwhom.top/Passthem/pt-minecraft-modpack`
|
||||
- `PT_REPO_REF`:仓库分支或 tag,例如 `main`
|
||||
- `PT_PACK_URL`:如果你想完全手动指定远程 `pack.toml` 地址,也可以直接传这个
|
||||
- `PT_INSTALL_ROOT`:实际运行目录,默认是脚本所在目录
|
||||
- `PT_JAVA_ARGS`:Java 内存等参数,默认 `-Xms1G -Xmx1G`
|
||||
- `PT_AUTO_EULA`:默认 `TRUE`,自动写入 `eula=true`
|
||||
- `PT_FORCE_UPDATE=1`:强制重新下载 Fabric installer / bootstrap,并重新执行安装
|
||||
- `PT_SERVER_JAR`:手动指定启动的服务端 jar 路径
|
||||
- `PT_RUNTIME_DIR`:缓存下载内容与状态文件的目录,默认 `.pt-panel-runtime/`
|
||||
- `PT_PACKWIZ_BOOTSTRAP_NO_UPDATE=1`:禁用 bootstrap 自更新
|
||||
- `PT_PACKWIZ_BOOTSTRAP_MAIN_JAR`:手动指定本地 `packwiz-installer.jar` 路径(适合 GitHub API 受限环境)
|
||||
- `PT_FABRIC_INSTALLER_VERSION`:手动指定 Fabric installer 版本
|
||||
- `PT_PACKWIZ_BOOTSTRAP_URL`:手动指定 bootstrap 下载地址
|
||||
|
||||
## 验证思路
|
||||
|
||||
本脚本已按真实链路验证过以下关键步骤:
|
||||
|
||||
```bash
|
||||
bash -n start.sh
|
||||
PT_DRY_RUN=1 PT_SERVER=server-01-random-block bash start.sh
|
||||
```
|
||||
|
||||
并且另外在独立测试目录里实际完成了端到端验证:
|
||||
|
||||
- `packwiz-installer-bootstrap` 可以直接读取该仓库的 `server-01-random-block/pack.toml`
|
||||
- `--side server` 会正确安装服务端所需模组
|
||||
- Fabric 官方 installer 能正确安装 `Minecraft 1.21.10 + Loader 0.18.5`
|
||||
- 使用 Java 21、`-Xms1G -Xmx1G` 成功启动服务器
|
||||
- 服务器日志已出现:`Done (...)! For help, type "help"`
|
||||
在 [这里](https://simp.host/status/simpfun) 可以查看 Simpfun 站点的 Uptime。
|
||||
|
||||
5
clinet-aether/.packwizignore
Normal file
5
clinet-aether/.packwizignore
Normal file
@ -0,0 +1,5 @@
|
||||
# .packwizignore 是 packwiz 包管理器在打包 .mrpack 文件时,
|
||||
# 应该忽略的文件清单
|
||||
|
||||
/README.md
|
||||
/justfile
|
||||
101
clinet-aether/config/flashback/flashback.json
Normal file
101
clinet-aether/config/flashback/flashback.json
Normal file
@ -0,0 +1,101 @@
|
||||
{
|
||||
"configVersion": 2,
|
||||
"recordingControls": {
|
||||
"controlsLocation": "RIGHT",
|
||||
"automaticallyStart": false,
|
||||
"automaticallyFinish": true,
|
||||
"showRecordingToasts": true,
|
||||
"quicksave": false
|
||||
},
|
||||
"recording": {
|
||||
"markDimensionChanges": true,
|
||||
"recordHotbar": true,
|
||||
"localPlayerUpdatesPerSecond": 60,
|
||||
"recordVoiceChat": true
|
||||
},
|
||||
"exporting": {
|
||||
"defaultExportFilename": "%date%T%time%",
|
||||
"exportRenderDummyFrames": 0
|
||||
},
|
||||
"keyframes": {
|
||||
"defaultInterpolationType": "SMOOTH",
|
||||
"useRealtimeInterpolation": true
|
||||
},
|
||||
"editorMovement": {
|
||||
"flightDirection": "HORIZONTAL",
|
||||
"flightMomentum": 1.0,
|
||||
"flightLockX": false,
|
||||
"flightLockY": false,
|
||||
"flightLockZ": false,
|
||||
"flightLockYaw": false,
|
||||
"flightLockPitch": false
|
||||
},
|
||||
"marker": {
|
||||
"markerOptions1": {
|
||||
"color": "RED",
|
||||
"customRGB": "#FF0000",
|
||||
"savePosition": true,
|
||||
"description": ""
|
||||
},
|
||||
"markerOptions2": {
|
||||
"color": "RED",
|
||||
"customRGB": "#FF0000",
|
||||
"savePosition": true,
|
||||
"description": ""
|
||||
},
|
||||
"markerOptions3": {
|
||||
"color": "RED",
|
||||
"customRGB": "#FF0000",
|
||||
"savePosition": true,
|
||||
"description": ""
|
||||
},
|
||||
"markerOptions4": {
|
||||
"color": "RED",
|
||||
"customRGB": "#FF0000",
|
||||
"savePosition": true,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"advanced": {
|
||||
"disableIncreasedFirstPersonUpdates": false,
|
||||
"disableThirdPersonCancel": false,
|
||||
"synchronizeTicking": false
|
||||
},
|
||||
"internal": {
|
||||
"recentReplays": [
|
||||
"F:\\Minecraft\\.minecraft\\versions\\PT\u0027s Basic Modpack\\flashback\\replays\\2026-03-25T22_40_34.zip"
|
||||
],
|
||||
"openedWindows": [],
|
||||
"nextUnsupportedModLoaderWarning": 0,
|
||||
"filterUnnecessaryPackets": true,
|
||||
"signedRenderFilter": false,
|
||||
"viewedTipsOfTheDay": 1,
|
||||
"showTipOfTheDay": true,
|
||||
"nextTipOfTheDay": 1774536191467,
|
||||
"replaySorting": "CREATED_DATE",
|
||||
"sortDescending": true,
|
||||
"defaultOverrideFov": 70.0,
|
||||
"enableOverrideFovByDefault": false
|
||||
},
|
||||
"internalExport": {
|
||||
"resolution": [
|
||||
1920,
|
||||
1080
|
||||
],
|
||||
"framerate": [
|
||||
60.0
|
||||
],
|
||||
"resetRng": false,
|
||||
"ssaa": false,
|
||||
"noGui": false,
|
||||
"selectedVideoEncoder": [
|
||||
0
|
||||
],
|
||||
"useMaximumBitrate": false,
|
||||
"recordAudio": false,
|
||||
"transparentBackground": false,
|
||||
"audioCodec": "AAC",
|
||||
"stereoAudio": false
|
||||
},
|
||||
"forceDefaultExportSettings": {}
|
||||
}
|
||||
814
clinet-aether/config/minihud.json
Normal file
814
clinet-aether/config/minihud.json
Normal file
@ -0,0 +1,814 @@
|
||||
{
|
||||
"InfoLineOrders": {
|
||||
"infoFPS": 0,
|
||||
"infoGPU": 1,
|
||||
"infoMemoryUsage": 2,
|
||||
"infoTimeIRL": 3,
|
||||
"infoTimeWorld": 4,
|
||||
"infoWorldTimeFormatted": 5,
|
||||
"infoCoordinates": 6,
|
||||
"infoCoordinatesScaled": 7,
|
||||
"infoBlockPosition": 8,
|
||||
"infoChunkPosition": 9,
|
||||
"infoBlockInChunk": 10,
|
||||
"infoDimensionId": 11,
|
||||
"infoFacing": 12,
|
||||
"infoRotationYaw": 13,
|
||||
"infoRotationPitch": 14,
|
||||
"infoBlockBreakSpeed": 15,
|
||||
"infoPlayerExperience": 16,
|
||||
"infoSpeed": 17,
|
||||
"infoSpeedAxis": 18,
|
||||
"infoSpeedHV": 19,
|
||||
"infoSprinting": 20,
|
||||
"infoServerTPS": 21,
|
||||
"§6infoServux§r": 22,
|
||||
"infoPing": 23,
|
||||
"§6infoWeather§r": 24,
|
||||
"infoTimeTotalModulo": 25,
|
||||
"infoTimeDayModulo": 26,
|
||||
"§6infoMobCaps§r": 27,
|
||||
"infoParticleCount": 28,
|
||||
"infoDifficulty": 29,
|
||||
"infoEntities": 30,
|
||||
"infoEntitiesClientWorld": 31,
|
||||
"infoTileEntities": 32,
|
||||
"infoLightLevel": 33,
|
||||
"infoBiome": 34,
|
||||
"infoBiomeRegistryName": 35,
|
||||
"infoDistance": 36,
|
||||
"infoLoadedChunksCount": 37,
|
||||
"infoChunkSections": 38,
|
||||
"infoChunkSectionsLine": 39,
|
||||
"infoChunkUpdates": 40,
|
||||
"infoRegionFile": 41,
|
||||
"infoSlimeChunk": 42,
|
||||
"infoLookingAtBlock": 43,
|
||||
"infoLookingAtBlockInChunk": 44,
|
||||
"infoBlockProperties": 45,
|
||||
"§6infoBeeCount§r": 46,
|
||||
"§6infoComparatorOutput§r": 47,
|
||||
"infoHoneyLevel": 48,
|
||||
"§6infoFurnaceXp§r": 49,
|
||||
"infoEntityRegistryName": 50,
|
||||
"infoLookingAtEntity": 51,
|
||||
"infoLookingAtEffects": 52,
|
||||
"infoLookingAtPlayerExp": 53,
|
||||
"infoZombieConversion": 54,
|
||||
"infoHorseSpeed": 55,
|
||||
"infoHorseJump": 56,
|
||||
"infoHorseMaxHealth": 57,
|
||||
"infoPandaGene": 58,
|
||||
"infoDolphinTreasure": 59,
|
||||
"infoEntityVariant": 60,
|
||||
"infoEntityHomePos": 61,
|
||||
"infoEntityCopperAging": 62
|
||||
},
|
||||
"Colors": {
|
||||
"beaconRangeLvl1": "#20E060FF",
|
||||
"beaconRangeLvl2": "#20FFB040",
|
||||
"beaconRangeLvl3": "#20FFF040",
|
||||
"beaconRangeLvl4": "#2060FF40",
|
||||
"blockGridOverlayColor": "#80FFFFFF",
|
||||
"conduitRange": "#2030FFFF",
|
||||
"conduitRangeOutlines": "#80FFFFFF",
|
||||
"lightLevelMarkerBlockLit": "#FF209040",
|
||||
"lightLevelMarkerDark": "#FFFF4848",
|
||||
"lightLevelMarkerDim": "#FFC0C040",
|
||||
"lightLevelMarkerSkyLit": "#FFFFFF33",
|
||||
"lightLevelNumberBlockDark": "#FFC03030",
|
||||
"lightLevelNumberBlockDim": "#FFC0C040",
|
||||
"lightLevelNumberBlockLit": "#FF20FF40",
|
||||
"lightLevelNumberSkyDark": "#FFFFF030",
|
||||
"lightLevelNumberSkyDim": "#FFC0C030",
|
||||
"lightLevelNumberSkyLit": "#FF40E0FF",
|
||||
"randomTicksFixedOverlayColor": "#30F9F225",
|
||||
"randomTicksPlayerOverlayColor": "#3030FE73",
|
||||
"regionOverlayColor": "#30FF8019",
|
||||
"shapeAdjustableSpawnSphere": "#6030B0B0",
|
||||
"shapeBox": "#6050A0A0",
|
||||
"shapeCanDespawnSphere": "#60A04050",
|
||||
"shapeCanSpawnSphere": "#60A04050",
|
||||
"shapeCircle": "#6030B0B0",
|
||||
"shapeDespawnSphere": "#60A04050",
|
||||
"shapeLineBlocky": "#6030F0B0",
|
||||
"shapeSphereBlocky": "#6030B0B0",
|
||||
"slimeChunksOverlayColor": "#3020F020",
|
||||
"spawnPlayerEntityOverlayColor": "#302050D0",
|
||||
"spawnPlayerRedstoneOverlayColor": "#30F8D641",
|
||||
"spawnPlayerLazyOverlayColor": "#30D030D0",
|
||||
"spawnPlayerOuterOverlayColor": "#306900D2",
|
||||
"spawnRealEntityOverlayColor": "#3030FF20",
|
||||
"spawnRealRedstoneOverlayColor": "#30F8D641",
|
||||
"spawnRealLazyOverlayColor": "#30FF3020",
|
||||
"spawnRealOuterOverlayColor": "#309D581A",
|
||||
"spawnableColumnHeightsOverlayColor": "#A0FF00FF",
|
||||
"textBackgroundColor": "#A0505050",
|
||||
"textColor": "#FFE0E0E0"
|
||||
},
|
||||
"Generic": {
|
||||
"axolotlTooltips": false,
|
||||
"beeTooltips": false,
|
||||
"disableVanillaBeeTooltips": false,
|
||||
"bundleTooltips": true,
|
||||
"bundleTooltipsFillLevel": 64,
|
||||
"customModelTooltips": false,
|
||||
"foodTooltips": false,
|
||||
"honeyTooltips": false,
|
||||
"lodestoneTooltips": false,
|
||||
"biomeOverlaySingleColor": true,
|
||||
"bundlePreview": false,
|
||||
"bundleDisplayBgColor": true,
|
||||
"bundleDisplayRequireShift": true,
|
||||
"bundleDisplayRowWidth": 9,
|
||||
"debugMessages": false,
|
||||
"dontClearStoredSeedOnDimensionChange": true,
|
||||
"conduitRangeOverlayCombineQuads": true,
|
||||
"conduitRangeOverlayOutlines": false,
|
||||
"conduitRangeOverlayThrough": false,
|
||||
"hudDataSync": {
|
||||
"enabled": false,
|
||||
"hotkey": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"entityDataSync": {
|
||||
"enabled": false,
|
||||
"hotkey": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"entityDataSyncBackup": false,
|
||||
"entityDataSyncBackupOpenToLan": false,
|
||||
"entityDataSyncCacheRefresh": 0.25,
|
||||
"entityDataSyncCacheTimeout": 2.75,
|
||||
"lightLevelAutoHeight": false,
|
||||
"lightLevelCollisionCheck": false,
|
||||
"lightLevelColoredNumbers": true,
|
||||
"lightLevelNumberRotation": true,
|
||||
"lightLevelRenderThrough": false,
|
||||
"lightLevelSkipBlockCheck": false,
|
||||
"lightLevelUnderWater": false,
|
||||
"mapPreview": false,
|
||||
"mapPreviewRequireShift": true,
|
||||
"offsetSubtitleHud": true,
|
||||
"requireSneak": false,
|
||||
"shulkerBoxPreview": false,
|
||||
"shulkerDisplayBgColor": true,
|
||||
"shulkerDisplayEnderChest": false,
|
||||
"shulkerDisplayRequireShift": true,
|
||||
"slimeChunkRenderThrough": false,
|
||||
"slimeChunkTopToPlayer": true,
|
||||
"sortLinesByLength": false,
|
||||
"sortLinesReversed": false,
|
||||
"spawnPlayerOuterOverlayEnabled": false,
|
||||
"spawnPlayerRedstoneOverlayEnabled": false,
|
||||
"spawnRealOuterOverlayEnabled": false,
|
||||
"spawnRealRedstoneOverlayEnabled": false,
|
||||
"speedUnits": "mps",
|
||||
"structuresRenderThrough": false,
|
||||
"structuresRenderOutlines": false,
|
||||
"useCustomizedCoordinateFormat": true,
|
||||
"useFontShadow": false,
|
||||
"useTextBackground": true,
|
||||
"mainRenderingToggle": {
|
||||
"enabled": false,
|
||||
"hotkey": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"moveShapeToPlayer": {
|
||||
"keys": ""
|
||||
},
|
||||
"openConfigGui": {
|
||||
"keys": "H,C"
|
||||
},
|
||||
"requiredKey": {
|
||||
"keys": ""
|
||||
},
|
||||
"serverNbtRequestRate": 2,
|
||||
"setDistanceReferencePoint": {
|
||||
"keys": ""
|
||||
},
|
||||
"shapeEditor": {
|
||||
"keys": ""
|
||||
},
|
||||
"blockGridOverlayMode": "all",
|
||||
"lightLevelMarkerCondition": "spawnable",
|
||||
"lightLevelMarkers": "square",
|
||||
"lightLevelNumberCondition": "always",
|
||||
"lightLevelNumbers": "block",
|
||||
"hudAlignment": "top_left",
|
||||
"biomeOverlayRange": 4,
|
||||
"biomeOverlayRangeVertical": 0,
|
||||
"blockPosFormat": "Block: %d, %d, %d",
|
||||
"blockGridOverlayRadius": 32,
|
||||
"coordinateFormat": "x: %.1f y: %.1f z: %.1f",
|
||||
"copperAgingMode": "mc_time",
|
||||
"dateFormatType": "regular",
|
||||
"dateFormatString": "yyyy-MM-dd HH:mm:ss",
|
||||
"dateFormatMinecraft": "MC time: (day {DAY}) {HOUR}:{MIN}:xx",
|
||||
"durationFormatType": "pretty",
|
||||
"durationFormatString": "HH:mm:ss.SSS",
|
||||
"fontScale": 0.5,
|
||||
"hudStatusEffectsShift": {
|
||||
"enabled": true,
|
||||
"hotkey": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"lightLevelMarkerSize": 0.84,
|
||||
"lightLevelNumberOffsetBlockX": 0.26,
|
||||
"lightLevelNumberOffsetBlockY": 0.32,
|
||||
"lightLevelNumberOffsetSkyX": 0.42,
|
||||
"lightLevelNumberOffsetSkyY": 0.56,
|
||||
"lightLevelRange": 24,
|
||||
"lightLevelThresholdDim": 0,
|
||||
"lightLevelThresholdSafe": 1,
|
||||
"lightLevelRenderOffset": 0.005,
|
||||
"mapPreviewSize": 160,
|
||||
"slimeChunkOverlayRadius": -1,
|
||||
"spawnableColumnHeightsOverlayRadius": 40,
|
||||
"textPosX": 4,
|
||||
"textPosY": 4,
|
||||
"timeDayDivisor": 24000,
|
||||
"timeTotalDivisor": 24000,
|
||||
"inventoryPreview": {
|
||||
"keys": "LEFT_ALT"
|
||||
},
|
||||
"inventoryPreviewEnabled": false,
|
||||
"inventoryPreviewToggleScreen": {
|
||||
"keys": "BUTTON_3"
|
||||
},
|
||||
"inventoryPreviewVillagerBGColor": false,
|
||||
"villagerConversionTicks": true,
|
||||
"villagerOfferEnchantmentBooks": true,
|
||||
"villagerOfferPriceRange": true,
|
||||
"villagerOfferHighestLevelOnly": false,
|
||||
"villagerOfferLowestPriceNearby": false,
|
||||
"villagerOfferPriceThreshold": 1.0
|
||||
},
|
||||
"InfoTypeToggles": {
|
||||
"infoFPS": true,
|
||||
"infoGPU": false,
|
||||
"infoMemoryUsage": false,
|
||||
"infoTimeIRL": true,
|
||||
"infoTimeWorld": false,
|
||||
"infoWorldTimeFormatted": false,
|
||||
"infoCoordinates": true,
|
||||
"infoCoordinatesScaled": false,
|
||||
"infoBlockPosition": false,
|
||||
"infoChunkPosition": false,
|
||||
"infoBlockInChunk": false,
|
||||
"infoDimensionId": false,
|
||||
"infoFacing": true,
|
||||
"infoRotationYaw": false,
|
||||
"infoRotationPitch": false,
|
||||
"infoBlockBreakSpeed": false,
|
||||
"infoPlayerExperience": false,
|
||||
"infoSpeed": false,
|
||||
"infoSpeedAxis": false,
|
||||
"infoSpeedHV": false,
|
||||
"infoSprinting": false,
|
||||
"infoServerTPS": false,
|
||||
"§6infoServux§r": false,
|
||||
"infoPing": false,
|
||||
"§6infoWeather§r": false,
|
||||
"infoTimeTotalModulo": false,
|
||||
"infoTimeDayModulo": false,
|
||||
"§6infoMobCaps§r": false,
|
||||
"infoParticleCount": false,
|
||||
"infoDifficulty": false,
|
||||
"infoEntities": false,
|
||||
"infoEntitiesClientWorld": false,
|
||||
"infoTileEntities": false,
|
||||
"infoLightLevel": false,
|
||||
"infoBiome": false,
|
||||
"infoBiomeRegistryName": false,
|
||||
"infoDistance": false,
|
||||
"infoLoadedChunksCount": false,
|
||||
"infoChunkSections": false,
|
||||
"infoChunkSectionsLine": false,
|
||||
"infoChunkUpdates": false,
|
||||
"infoRegionFile": false,
|
||||
"infoSlimeChunk": false,
|
||||
"infoLookingAtBlock": false,
|
||||
"infoLookingAtBlockInChunk": false,
|
||||
"infoBlockProperties": false,
|
||||
"§6infoBeeCount§r": false,
|
||||
"§6infoComparatorOutput§r": false,
|
||||
"infoHoneyLevel": false,
|
||||
"§6infoFurnaceXp§r": false,
|
||||
"infoEntityRegistryName": false,
|
||||
"infoLookingAtEntity": false,
|
||||
"infoLookingAtEffects": false,
|
||||
"infoLookingAtPlayerExp": false,
|
||||
"infoZombieConversion": false,
|
||||
"infoHorseSpeed": false,
|
||||
"infoHorseJump": false,
|
||||
"infoHorseMaxHealth": false,
|
||||
"infoPandaGene": false,
|
||||
"infoDolphinTreasure": false,
|
||||
"infoEntityVariant": false,
|
||||
"infoEntityHomePos": false,
|
||||
"infoEntityCopperAging": false
|
||||
},
|
||||
"InfoHotkeys": {
|
||||
"infoFPS": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoGPU": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoMemoryUsage": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoTimeIRL": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoTimeWorld": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoWorldTimeFormatted": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoCoordinates": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoCoordinatesScaled": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBlockPosition": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoChunkPosition": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBlockInChunk": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoDimensionId": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoFacing": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoRotationYaw": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoRotationPitch": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBlockBreakSpeed": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoPlayerExperience": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoSpeed": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoSpeedAxis": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoSpeedHV": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoSprinting": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoServerTPS": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoServux§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoPing": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoWeather§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoTimeTotalModulo": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoTimeDayModulo": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoMobCaps§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoParticleCount": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoDifficulty": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntities": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntitiesClientWorld": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoTileEntities": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLightLevel": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBiome": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBiomeRegistryName": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoDistance": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLoadedChunksCount": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoChunkSections": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoChunkSectionsLine": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoChunkUpdates": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoRegionFile": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoSlimeChunk": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLookingAtBlock": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLookingAtBlockInChunk": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBlockProperties": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoBeeCount§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoComparatorOutput§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoHoneyLevel": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoFurnaceXp§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntityRegistryName": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLookingAtEntity": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLookingAtEffects": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLookingAtPlayerExp": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoZombieConversion": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoHorseSpeed": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoHorseJump": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoHorseMaxHealth": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoPandaGene": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoDolphinTreasure": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntityVariant": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntityHomePos": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntityCopperAging": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"RendererToggles": {
|
||||
"overlayBeaconRange": false,
|
||||
"overlayBiomeBorder": false,
|
||||
"overlayBlockGrid": false,
|
||||
"overlayConduitRange": false,
|
||||
"overlayLightLevel": false,
|
||||
"overlayRandomTicksFixed": false,
|
||||
"overlayRandomTicksPlayer": false,
|
||||
"overlayRegionFile": false,
|
||||
"overlaySlimeChunks": false,
|
||||
"overlaySpawnableColumnHeights": false,
|
||||
"overlaySpawnChunkReal": false,
|
||||
"overlaySpawnChunkPlayer": false,
|
||||
"§6overlayStructureMainToggle§r": false,
|
||||
"§6overlayVillagerInfo§r": false,
|
||||
"shapeRenderer": false,
|
||||
"debugChunkBorder": false,
|
||||
"debugEntityHitboxes": false,
|
||||
"debugWaterEnabled": false,
|
||||
"debugHeightmapEnabled": false,
|
||||
"debugCollisionBoxEnabled": false,
|
||||
"debugSupportingBlock": false,
|
||||
"debugLightEnabled": false,
|
||||
"debugSkylightSectionsEnabled": false,
|
||||
"debugChunkLoading": false,
|
||||
"debugChunkSectionOctree": false,
|
||||
"debugChunkSectionPaths": false,
|
||||
"debugChunkSectionVisibility": false,
|
||||
"§6debugDataMainToggle§r": false,
|
||||
"§6debugPathfindingEnabled§r": false,
|
||||
"§6debugNeighborsUpdateEnabled§r": false,
|
||||
"§6debugRedstoneUpdateOrder§r": false,
|
||||
"§6debugStructuresEnabled§r": false,
|
||||
"§6debugVillageSectionsEnabled§r": false,
|
||||
"§6debugBrainEnabled§r": false,
|
||||
"§6debugPoiEnabled§r": false,
|
||||
"§6debugBeeDataEnabled§r": false,
|
||||
"§6debugRaidCenterEnabled§r": false,
|
||||
"§6debugGoalSelectorEnabled§r": false,
|
||||
"§6debugGameEventsEnabled§r": false,
|
||||
"§6debugBreezeJumpEnabled§r": false,
|
||||
"§6debugEntityBlockIntersectionEnabled§r": false
|
||||
},
|
||||
"RendererHotkeys": {
|
||||
"overlayBeaconRange": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayBiomeBorder": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayBlockGrid": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayConduitRange": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayLightLevel": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayRandomTicksFixed": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayRandomTicksPlayer": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayRegionFile": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlaySlimeChunks": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlaySpawnableColumnHeights": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlaySpawnChunkReal": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlaySpawnChunkPlayer": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6overlayStructureMainToggle§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6overlayVillagerInfo§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"shapeRenderer": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugChunkBorder": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugEntityHitboxes": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugWaterEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugHeightmapEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugCollisionBoxEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugSupportingBlock": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugLightEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugSkylightSectionsEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugChunkLoading": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugChunkSectionOctree": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugChunkSectionPaths": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugChunkSectionVisibility": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugDataMainToggle§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugPathfindingEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugNeighborsUpdateEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugRedstoneUpdateOrder§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugStructuresEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugVillageSectionsEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugBrainEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugPoiEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugBeeDataEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugRaidCenterEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugGoalSelectorEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugGameEventsEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugBreezeJumpEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugEntityBlockIntersectionEnabled§r": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"StructureColors": {
|
||||
"Ancient City Main": "#30D10AE6",
|
||||
"Ancient City Components": "#30D506C9",
|
||||
"Bastion Remnant Main": "#302171F5",
|
||||
"Bastion Remnant Components": "#302171F5",
|
||||
"Buried Treasure Main": "#302298E6",
|
||||
"Buried Treasure Components": "#302298E6",
|
||||
"Desert Pyramid Main": "#30FFFF00",
|
||||
"Desert Pyramid Components": "#30FFFF00",
|
||||
"End City Main": "#30EB07EB",
|
||||
"End City Components": "#30EB07EB",
|
||||
"Igloo Main": "#300FAFE4",
|
||||
"Igloo Components": "#300FAFE4",
|
||||
"Jungle Temple Main": "#3099FF00",
|
||||
"Jungle Temple Components": "#3099FF00",
|
||||
"Mansion Main": "#30FF6500",
|
||||
"Mansion Components": "#30FF6500",
|
||||
"Mineshaft Main": "#30F8D650",
|
||||
"Mineshaft Components": "#30F8D650",
|
||||
"Nether Fortress Main": "#30FC381D",
|
||||
"Nether Fortress Components": "#30FC381D",
|
||||
"Nether Fossil Main": "#30868E99",
|
||||
"Nether Fossil Components": "#30868E99",
|
||||
"Ocean Monument Main": "#3029E6EF",
|
||||
"Ocean Monument Components": "#3029E6EF",
|
||||
"Ocean Ruin Main": "#300FAD83",
|
||||
"Ocean Ruin Components": "#300FAD83",
|
||||
"Pillager Outpost Main": "#300FAD83",
|
||||
"Pillager Outpost Components": "#300FAD83",
|
||||
"Ruined Portal Main": "#309F03D3",
|
||||
"Ruined Portal Components": "#309F03D3",
|
||||
"Shipwreck Main": "#30EB1995",
|
||||
"Shipwreck Components": "#30EB1995",
|
||||
"Stronghold Main": "#30009999",
|
||||
"Stronghold Components": "#30009999",
|
||||
"Trial Chambers Main": "#3099664E",
|
||||
"Trial Chambers Components": "#30CC8868",
|
||||
"Village Main": "#3054CB4E",
|
||||
"Village Components": "#3054CB4E",
|
||||
"Witch Hut Main": "#30BE1DFC",
|
||||
"Witch Hut Components": "#300099FF",
|
||||
"Trail Ruins Main": "#307F5AFF",
|
||||
"Trail Ruins Components": "#307F5AFF",
|
||||
"Unknown Main": "#50FFFFFF",
|
||||
"Unknown Components": "#50FFFFFF"
|
||||
},
|
||||
"StructureHotkeys": {
|
||||
"Toggle Ancient City": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Bastion Remnant": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Buried Treasure": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Desert Pyramid": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle End City": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Igloo": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Jungle Temple": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Mansion": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Mineshaft": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Nether Fortress": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Nether Fossil": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Ocean Monument": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Ocean Ruin": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Pillager Outpost": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Ruined Portal": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Shipwreck": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Stronghold": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Trial Chambers": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Village": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Witch Hut": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Trail Ruins": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Unknown": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"StructureToggles": {
|
||||
"Ancient City": false,
|
||||
"Bastion Remnant": false,
|
||||
"Buried Treasure": false,
|
||||
"Desert Pyramid": false,
|
||||
"End City": false,
|
||||
"Igloo": false,
|
||||
"Jungle Temple": false,
|
||||
"Mansion": false,
|
||||
"Mineshaft": false,
|
||||
"Nether Fortress": false,
|
||||
"Nether Fossil": false,
|
||||
"Ocean Monument": false,
|
||||
"Ocean Ruin": false,
|
||||
"Pillager Outpost": false,
|
||||
"Ruined Portal": false,
|
||||
"Shipwreck": false,
|
||||
"Stronghold": false,
|
||||
"Trial Chambers": false,
|
||||
"Village": false,
|
||||
"Witch Hut": false,
|
||||
"Trail Ruins": false,
|
||||
"Unknown": false
|
||||
},
|
||||
"config_version": 1
|
||||
}
|
||||
171
clinet-aether/index.toml
Normal file
171
clinet-aether/index.toml
Normal file
@ -0,0 +1,171 @@
|
||||
hash-format = "sha256"
|
||||
|
||||
[[files]]
|
||||
file = ".ruff_cache/0.12.5/9003304597081016262"
|
||||
hash = "e4d015c7ffbd58a2c76b0159b23e655a5bcc7251ddc5fdcf538efb8dba91da87"
|
||||
|
||||
[[files]]
|
||||
file = ".ruff_cache/CACHEDIR.TAG"
|
||||
hash = "5953156d7e0c564a427251316eaf26f8870e6483ae2197f916b630e4f93e31ae"
|
||||
|
||||
[[files]]
|
||||
file = "config/flashback/flashback.json"
|
||||
hash = "2303330c04e7ac1b4070bf3bc181e6db2241c0679c9c6f2b4f887626a2e01398"
|
||||
|
||||
[[files]]
|
||||
file = "config/minihud.json"
|
||||
hash = "c7234a140647864c91f0a58bda759841d0665bf015f8499abb96fce982546fe5"
|
||||
|
||||
[[files]]
|
||||
file = "mods/3dskinlayers.pw.toml"
|
||||
hash = "6673f89fd7dd77fe94bd3fc7c4e28661435b5b54ae2e7e5a5a6f54ad9f1cec54"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/aether.pw.toml"
|
||||
hash = "e71c04679ff75573cd8ef1003eb167830f794b8979f2bdd3c99d28793f2918b0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/appleskin.pw.toml"
|
||||
hash = "17fc9c6cab5ae0ea6973440f143ad6ffa4e5d373749c80077b631dbbe4df3f3b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cubes-without-borders.pw.toml"
|
||||
hash = "7797b4dcd9c68b4555caf2629b0bff76f234ae04e8b42956e95ce2c65807049e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/dynamic-fps.pw.toml"
|
||||
hash = "582070fa54fe1743a837c0351eee7ea4a79080e647d5438656d372ae9433b272"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/entityculling.pw.toml"
|
||||
hash = "44b098ffab2f728d5a50f33aee186c89a15b120aaa4be327c729f491ef90379e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.pw.toml"
|
||||
hash = "7494d3ab9667c29b19cc48b65e39b3623bd6c521e4357526176f71ace8ec17eb"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-language-kotlin.pw.toml"
|
||||
hash = "337d97b990f76c91584b12600651ae7bd47a0824e45070b3d9330b0922149fc0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/flashback.pw.toml"
|
||||
hash = "17b5f092706cec38125745439bacde36e7d1e6f19cdac6c7c632843bc34ea9d9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/iris.pw.toml"
|
||||
hash = "5284f6d141a990f4ea021c12b851e07102f5cb22743cf7b33be6ad2eb4c8d3f5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/jei.pw.toml"
|
||||
hash = "76a2560989102413693bbfbea83570287b3dce4f6ed40dc69aacbd3268633fe7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lithium.pw.toml"
|
||||
hash = "23de0cbbfd28d752eb662c00a907406bac3e3ad529dd2ac250b41b4b0ef734ce"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/malilib.pw.toml"
|
||||
hash = "4842a349ba8e18407a4e32ef184ad1d2a437ff8e5b0c158391b6225216b4b8ce"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/midnightlib.pw.toml"
|
||||
hash = "492fe2b4d82b00489ddc4d1f8c3f5489f7f847e999cfd6dec5de27e2ba683811"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/minihud.pw.toml"
|
||||
hash = "8ef7d55010287b46fce10e263cccf91fa345a1272428f9c74557060c5a21f735"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/modelfix.pw.toml"
|
||||
hash = "d12b136e07f6f83a1e199aabe430426d19702c9f69e55731092b5d5c2f3fb69f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/modmenu.pw.toml"
|
||||
hash = "4a33f888af603e0859359f44b068854e4148d4fba35ee0818bb977171236a805"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mouse-tweaks.pw.toml"
|
||||
hash = "7fc969e77edc3b0b9946b42070fd858349a74555f0cf9648907241af8a3a2d25"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/no-chat-reports.pw.toml"
|
||||
hash = "f3c5cb21ff2e78c7e8cdbd14d1535e6edd464d5a436dbfa4e60b8ea91374674d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/no-telemetry.pw.toml"
|
||||
hash = "c5e7e0a3de03c138f587fc56dca70013978677e0cde2ad19024dc798178a49bd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/owo-lib.pw.toml"
|
||||
hash = "31e7b4d016cbdf3f0abbb1ab202cf60e84ff8330ebbf6f043739128fb9133fad"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/placeholder-api.pw.toml"
|
||||
hash = "2e2c1b47b513663871e71c89a699c66ac9fcc97633f007ed064ce4410f220f5a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/simple-voice-chat.pw.toml"
|
||||
hash = "fb6eb6b6ed51712433c8f8e6e49ae3743e2e172baac5878deb50add8fdfa2b11"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium-extra.pw.toml"
|
||||
hash = "1af09f16a643df0f61f2c799e981aa0b8c109999f0784584a6eff9a81f1c00c1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium.pw.toml"
|
||||
hash = "be0c8881821da897824770b2a71f0f3765a233eda69b295fa5b92ffe8a25014c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/tweakermore.pw.toml"
|
||||
hash = "8fd822b32044432ca03ab0439c484f74eccb57e6871b1a4c63fef4b3dd2ba80a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/tweakeroo.pw.toml"
|
||||
hash = "1425b10d9c01d838d3d01e26dc5fa83f3165229ff1f1b2094a83358399c5c97f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yacl.pw.toml"
|
||||
hash = "af20070dd9497817a83162c17b181a0a44f7213ea302d059a81c5aed02d0c877"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/zoomify.pw.toml"
|
||||
hash = "fb253ea8917107392ccd80685bd04afeb7ca1d82a81118d1821df30f4aa750c8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "options.txt"
|
||||
hash = "6179802b18bb8466817b2ce3729c1236abe65d9554dd0953c587371350ba8f76"
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/complementary-reimagined.pw.toml"
|
||||
hash = "b769a2f7ef2fa754224c5068491e79d02c0c85e0bc326fc05247f18315cc866b"
|
||||
metafile = true
|
||||
13
clinet-aether/mods/3dskinlayers.pw.toml
Normal file
13
clinet-aether/mods/3dskinlayers.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "3D Skin Layers"
|
||||
filename = "skinlayers3d-fabric-1.11.1-mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/zV5r3pPn/versions/U0nPT3LQ/skinlayers3d-fabric-1.11.1-mc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "c9c0e11d8874d815ab067e72a27804ff2149b0162afe36cf239b0a6df2faf2699fed25ba433f0a6ca5148d47444a3982fbce56aaba8d43bfffd3593ecda55661"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "zV5r3pPn"
|
||||
version = "U0nPT3LQ"
|
||||
13
clinet-aether/mods/aether.pw.toml
Normal file
13
clinet-aether/mods/aether.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "The Aether"
|
||||
filename = "aether-1.21.1-1.5.11-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YhmgMVyu/versions/NSqdh1i9/aether-1.21.1-1.5.11-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "de78675eb2719965cb1378113cc443c43039ff706ed70824355267f40286ab3abfb3065778ab711a43615c818362dad5e4dca672c3568d90b14b1a86a9037e04"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YhmgMVyu"
|
||||
version = "NSqdh1i9"
|
||||
13
clinet-aether/mods/appleskin.pw.toml
Normal file
13
clinet-aether/mods/appleskin.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "AppleSkin"
|
||||
filename = "appleskin-fabric-mc1.21-3.0.6.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/b5ZiCjAr/appleskin-fabric-mc1.21-3.0.6.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "accbb36b863bdeaaeb001f7552534f3bdf0f27556795cf8e813f9b32e7732450ec5133da5e0ec9b92dc22588c48ffb61577c375f596dc351f15c15ce6a6f4228"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "EsAfCjCV"
|
||||
version = "b5ZiCjAr"
|
||||
13
clinet-aether/mods/cubes-without-borders.pw.toml
Normal file
13
clinet-aether/mods/cubes-without-borders.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Cubes Without Borders"
|
||||
filename = "cwb-fabric-3.0.0+mc1.21.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ETlrkaYF/versions/m350hyy8/cwb-fabric-3.0.0%2Bmc1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "78a9e25f6b8bdd4637a10d7e0ffea85c9704bcae88a4daba27a843e63e2044cf2718c4807c247745e2992fdda06ec176c326e7ca862200fab2125de8fa03436d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ETlrkaYF"
|
||||
version = "m350hyy8"
|
||||
13
clinet-aether/mods/dynamic-fps.pw.toml
Normal file
13
clinet-aether/mods/dynamic-fps.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Dynamic FPS"
|
||||
filename = "dynamic-fps-3.11.4+minecraft-1.21.0-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/GBH14HiF/dynamic-fps-3.11.4%2Bminecraft-1.21.0-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "42c7043517889274f2932f257a78d0a67c22f2bebb1385ab4d0ba7936da2163e907d63f22bfeed5126342b568ddf4d7bc576ab6e76401a07d20a4978ba61bf20"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "LQ3K71Q1"
|
||||
version = "GBH14HiF"
|
||||
13
clinet-aether/mods/entityculling.pw.toml
Normal file
13
clinet-aether/mods/entityculling.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Entity Culling"
|
||||
filename = "entityculling-fabric-1.10.1-mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/umue6GAJ/entityculling-fabric-1.10.1-mc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "57c2db4458d64f47f28e0b753745ff0c62441372432f55454f4a626c3425b264663e0884edbb52e1f6b2545411425056707bd77cfeeac370b9a984f28c38c8c4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NNAgCjsB"
|
||||
version = "umue6GAJ"
|
||||
13
clinet-aether/mods/fabric-api.pw.toml
Normal file
13
clinet-aether/mods/fabric-api.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Fabric API"
|
||||
filename = "fabric-api-0.116.11+1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/IpaMcBLh/fabric-api-0.116.11%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "756b8c086f4c911d012f2eb70ca792aef0439503b31bc52026b82830870a94d472de30d61a6a0a9988c02b8462d9c47aa6baa6cd84da1eaf00edb77249b3c413"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "P7dR8mSH"
|
||||
version = "IpaMcBLh"
|
||||
13
clinet-aether/mods/fabric-language-kotlin.pw.toml
Normal file
13
clinet-aether/mods/fabric-language-kotlin.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Fabric Language Kotlin"
|
||||
filename = "fabric-language-kotlin-1.13.11+kotlin.2.3.21.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/2i87JpYj/fabric-language-kotlin-1.13.11%2Bkotlin.2.3.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fa5ed2613f7216999cc0c5ddc71906f082a32b52507d7160acbdcf0eb8de12993ba302e5afde6681d025008ecc66c7533fc0c21deb672ef681b2194fb9be4245"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Ha28R6CL"
|
||||
version = "2i87JpYj"
|
||||
13
clinet-aether/mods/flashback.pw.toml
Normal file
13
clinet-aether/mods/flashback.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Flashback"
|
||||
filename = "Flashback-0.39.4-for-MC1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/4das1Fjq/versions/bBd0Xe5M/Flashback-0.39.4-for-MC1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "71dacce237cfeef30b46d12608aa296121774809f22cda63340c945ecdd6279a7cc9b91083373ee72de4fa65acbf2dd0a7b0d432931cb34260ef04884ea43391"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "4das1Fjq"
|
||||
version = "bBd0Xe5M"
|
||||
13
clinet-aether/mods/iris.pw.toml
Normal file
13
clinet-aether/mods/iris.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Iris Shaders"
|
||||
filename = "iris-fabric-1.8.8+mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/zsoi0dso/iris-fabric-1.8.8%2Bmc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2e6ba2ffa1e1a6799288245a7e0ac68ee8df1d41b98362189df58f535cae34fa9277801e4136633467341b7dae5be0e5c698011b480b3d91b66d3dd4f7567aa6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YL57xq9U"
|
||||
version = "zsoi0dso"
|
||||
13
clinet-aether/mods/jei.pw.toml
Normal file
13
clinet-aether/mods/jei.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Just Enough Items (JEI)"
|
||||
filename = "jei-1.21.1-fabric-19.27.0.340.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/TvqzuFwN/jei-1.21.1-fabric-19.27.0.340.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "04d4067931010578b55aee55b1e38f7ea2ea3ce8d258ae5d9ece7facfcfcb41349a457ca8bd2ca502577616b84b1c14dbd00b2985ffc6cde5c3d1ec2dd214a04"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "u6dRKJwZ"
|
||||
version = "TvqzuFwN"
|
||||
13
clinet-aether/mods/lithium.pw.toml
Normal file
13
clinet-aether/mods/lithium.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Lithium"
|
||||
filename = "lithium-fabric-0.15.3+mc1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/XQJtuOTA/lithium-fabric-0.15.3%2Bmc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8c576d519121b0c2521101d2209eccd85d560b097fcb847aa54c51cd0d3f3947676f01c8d99913f514487c8e0972a1cf5f3da0c9ef0ec9bacdf2baeb4eb7d1a7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gvQqBUqZ"
|
||||
version = "XQJtuOTA"
|
||||
13
clinet-aether/mods/malilib.pw.toml
Normal file
13
clinet-aether/mods/malilib.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "MaLiLib"
|
||||
filename = "malilib-fabric-1.21-0.21.10.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/GcWjdA9I/versions/C99LEy6r/malilib-fabric-1.21-0.21.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "9f70b4605ea23f8c8b519622a6cbdcac6c8934c70bab3b8ea2d5da071a37e71ff74406d2e154c5ba4ebc7772d76e97ae94f5760e71632bd8a11d23ae8ae9a111"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "GcWjdA9I"
|
||||
version = "C99LEy6r"
|
||||
13
clinet-aether/mods/midnightlib.pw.toml
Normal file
13
clinet-aether/mods/midnightlib.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "MidnightLib"
|
||||
filename = "midnightlib-fabric-1.9.2+1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/codAaoxh/versions/3tCMjbnf/midnightlib-fabric-1.9.2%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6ec997857e395c2b6081e4e117995e3b58ff3aff8353f51867d241db1b8f45c2d9985647301cb1946ddd85bf783362030b83ec1f61ec5c74e18ea5b48f1fd683"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "codAaoxh"
|
||||
version = "3tCMjbnf"
|
||||
13
clinet-aether/mods/minihud.pw.toml
Normal file
13
clinet-aether/mods/minihud.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "MiniHUD"
|
||||
filename = "minihud-fabric-1.21-0.32.60.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/UMxybHE8/versions/v23Owcjb/minihud-fabric-1.21-0.32.60.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "359ba95f990a45c431e20138c62407bedab466cff4ac9240b4786b86d084f42d192eafb3d6420ce92a9a9a46d09e498dc6a5d6bbe3e9d39eb6badff6d0a3613a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "UMxybHE8"
|
||||
version = "v23Owcjb"
|
||||
13
clinet-aether/mods/modelfix.pw.toml
Normal file
13
clinet-aether/mods/modelfix.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Model Gap Fix"
|
||||
filename = "modelfix-1.21-1.6-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/QdG47OkI/versions/FUZo6yCk/modelfix-1.21-1.6-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5e6c5027420dd4fc0a2aa628edbb75f9dd468f14451766f582018eaa89d69e345c45452cc57c9730d4298a33e698a7832269b491f7cecbb11cc46d084825f2b3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "QdG47OkI"
|
||||
version = "FUZo6yCk"
|
||||
13
clinet-aether/mods/modmenu.pw.toml
Normal file
13
clinet-aether/mods/modmenu.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Mod Menu"
|
||||
filename = "modmenu-11.0.4.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/v6Xx3fbU/modmenu-11.0.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "45ea8f7e0749bc0eb98900f94486e323f153b199617fa43977b46472e4196ee5a6739f41a1e7f68e270f84a367df5f7f53c2a1f46145ad7d349ede4297895396"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "mOgUt4GM"
|
||||
version = "v6Xx3fbU"
|
||||
13
clinet-aether/mods/mouse-tweaks.pw.toml
Normal file
13
clinet-aether/mods/mouse-tweaks.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Mouse Tweaks"
|
||||
filename = "MouseTweaks-fabric-mc1.21-2.26.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/ylmBQ38A/MouseTweaks-fabric-mc1.21-2.26.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1744a48a47aedcbf19a0a93f78473cf0221fc4782852dca7fc02685719174664b4f9d95d353fcfc16902ac3815594511ba6d9ab14391f9b7e25ec9b2e777927a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "aC3cM3Vq"
|
||||
version = "ylmBQ38A"
|
||||
13
clinet-aether/mods/no-chat-reports.pw.toml
Normal file
13
clinet-aether/mods/no-chat-reports.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "No Chat Reports"
|
||||
filename = "NoChatReports-FABRIC-1.21.1-v2.9.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/D8K0KJXM/NoChatReports-FABRIC-1.21.1-v2.9.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "23bb4a8a6a3f7071281cf97560e12f37e1f5f638a156e3fcb92a50ff0091f1fcfa3e090e7745e4b1175e7c2c784e38d73536a1044db1bf225a182fab758a5a29"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qQyHxfxd"
|
||||
version = "D8K0KJXM"
|
||||
13
clinet-aether/mods/no-telemetry.pw.toml
Normal file
13
clinet-aether/mods/no-telemetry.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "No Telemetry"
|
||||
filename = "no-telemetry-1.10.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/hg77g4Pw/versions/cBEkQM9c/no-telemetry-1.10.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "a123e59ee7cb9de88669de06d56f5313cc60ee5ec80b0cc407ca0cff3b54b81255fba65e615fa7a33142b8030868e0c2a4cf9bdeadda7b3c593d707eff45576d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "hg77g4Pw"
|
||||
version = "cBEkQM9c"
|
||||
13
clinet-aether/mods/owo-lib.pw.toml
Normal file
13
clinet-aether/mods/owo-lib.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "oωo (owo-lib)"
|
||||
filename = "owo-lib-0.13.0-alpha.15+1.21.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ccKDOlHs/versions/m3XmDd8j/owo-lib-0.13.0-alpha.15%2B1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "939299e72209f8e5a4937fbb2290ed63f7bc5caf2677e6d9fbea8be8049d5ad39c1173f0b61abae7cfddcf7cceb9802f7e2d60b9e8a0fdda399fcbad8f0ac5b4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ccKDOlHs"
|
||||
version = "m3XmDd8j"
|
||||
13
clinet-aether/mods/placeholder-api.pw.toml
Normal file
13
clinet-aether/mods/placeholder-api.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Text Placeholder API"
|
||||
filename = "placeholder-api-2.4.2+1.21.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/eXts2L7r/versions/U5bhVym2/placeholder-api-2.4.2%2B1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fc13d3a5c048dbaab86318edaf8b6c6b46ef9f1d367e8f063d19f5a9b0da66c5ae419d92c8c4608edc89a01eb44d91ffcf017fea73f39b222cbd85e82f70a233"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "eXts2L7r"
|
||||
version = "U5bhVym2"
|
||||
13
clinet-aether/mods/simple-voice-chat.pw.toml
Normal file
13
clinet-aether/mods/simple-voice-chat.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Simple Voice Chat"
|
||||
filename = "voicechat-fabric-1.21.1-2.6.16.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/x8XxZ0Cg/voicechat-fabric-1.21.1-2.6.16.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "571e099748077e75d09ab089d792092ae72d4b25b7627ad3783e6720c90330ab6643f604c3c7692e852d59918ac4e1ea9d74bb97399cce63d5fd270fcb025cbd"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9eGKb6K1"
|
||||
version = "x8XxZ0Cg"
|
||||
13
clinet-aether/mods/sodium-extra.pw.toml
Normal file
13
clinet-aether/mods/sodium-extra.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Sodium Extra"
|
||||
filename = "sodium-extra-fabric-0.6.0+mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/anDafurZ/sodium-extra-fabric-0.6.0%2Bmc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fa7fa78b5d4ef19eff4b3e711f5c79cb54e71c55c6af43fa6867c86e3e54be5045a681b809b8482227c5bda4da4afdce6f30b91e8021d3fae7e34be252b9c972"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "PtjYWJkn"
|
||||
version = "anDafurZ"
|
||||
13
clinet-aether/mods/sodium.pw.toml
Normal file
13
clinet-aether/mods/sodium.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Sodium"
|
||||
filename = "sodium-fabric-0.6.13+mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/AANobbMI/versions/u1OEbNKx/sodium-fabric-0.6.13%2Bmc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "13032e064c554fc8671573dadb07bc70e6ea2f68706c65c086c4feb1d2f664346a3414cbf9d1367b42b8d063a35e40f2f967ef9af31642e1f0093b852161fe91"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "AANobbMI"
|
||||
version = "u1OEbNKx"
|
||||
13
clinet-aether/mods/tweakermore.pw.toml
Normal file
13
clinet-aether/mods/tweakermore.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "TweakerMore"
|
||||
filename = "tweakermore-v3.30.0-mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/GBeCx05I/versions/yYUov7pW/tweakermore-v3.30.0-mc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8d437ae9e453dd63380ca2e2315adf2a3f6a6d78195749a4d39d732cba42cacec00e6c50ad108d2256567e70a1ba39ec289981c68a711a4e7b14223f4f1c766e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "GBeCx05I"
|
||||
version = "yYUov7pW"
|
||||
13
clinet-aether/mods/tweakeroo.pw.toml
Normal file
13
clinet-aether/mods/tweakeroo.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Tweakeroo"
|
||||
filename = "tweakeroo-fabric-1.21-0.21.61.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/t5wuYk45/versions/XweKE6fy/tweakeroo-fabric-1.21-0.21.61.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "0da2616748a4dbed62f39198776c9bd1a1170b78e0cd6092584687b2634e92e8f95516b69829bccff110fad5a8b2aaebbab03c1135d222d51126d5db5bfbb459"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "t5wuYk45"
|
||||
version = "XweKE6fy"
|
||||
13
clinet-aether/mods/yacl.pw.toml
Normal file
13
clinet-aether/mods/yacl.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "YetAnotherConfigLib (YACL)"
|
||||
filename = "yet_another_config_lib_v3-3.8.2+1.21.1-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/o3cDn8Vp/yet_another_config_lib_v3-3.8.2%2B1.21.1-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "353169f85fa63e73ce9bdd0d4ddce54e3cbc4d71153a93c982f74c68fd93325986663f94fc2f2b10f4427e8b15a0485c608c5587b3840d933204b50ea4cb6d4c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "1eAoo2KR"
|
||||
version = "o3cDn8Vp"
|
||||
13
clinet-aether/mods/zoomify.pw.toml
Normal file
13
clinet-aether/mods/zoomify.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Zoomify"
|
||||
filename = "zoomify-2.15.2+1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/w7ThoJFB/versions/6jrMC48Z/zoomify-2.15.2%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ce8db36e77f089f091986b6e8bea1c33433bbcffc7a47fa18d04dea5ecd4910286943600a85b4773fdf4ed5405f52f3c0dc08fea8b1551d7725a26e1f6ef2879"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "w7ThoJFB"
|
||||
version = "6jrMC48Z"
|
||||
194
clinet-aether/options.txt
Normal file
194
clinet-aether/options.txt
Normal file
@ -0,0 +1,194 @@
|
||||
version:3955
|
||||
ao:true
|
||||
biomeBlendRadius:2
|
||||
enableVsync:true
|
||||
entityDistanceScaling:1.0
|
||||
entityShadows:true
|
||||
forceUnicodeFont:false
|
||||
japaneseGlyphVariants:false
|
||||
fov:0.0
|
||||
fovEffectScale:1.0
|
||||
darknessEffectScale:1.0
|
||||
glintSpeed:0.5
|
||||
glintStrength:0.75
|
||||
prioritizeChunkUpdates:0
|
||||
fullscreen:false
|
||||
graphicsMode:1
|
||||
guiScale:0
|
||||
maxFps:120
|
||||
mipmapLevels:4
|
||||
narrator:0
|
||||
particles:0
|
||||
reducedDebugInfo:false
|
||||
renderClouds:"true"
|
||||
renderDistance:12
|
||||
simulationDistance:12
|
||||
screenEffectScale:1.0
|
||||
soundDevice:""
|
||||
autoJump:false
|
||||
operatorItemsTab:false
|
||||
autoSuggestions:true
|
||||
chatColors:true
|
||||
chatLinks:true
|
||||
chatLinksPrompt:true
|
||||
discrete_mouse_scroll:false
|
||||
invertYMouse:false
|
||||
realmsNotifications:false
|
||||
showSubtitles:false
|
||||
directionalAudio:false
|
||||
touchscreen:false
|
||||
bobView:true
|
||||
toggleCrouch:false
|
||||
toggleSprint:false
|
||||
darkMojangStudiosBackground:false
|
||||
hideLightningFlashes:false
|
||||
hideSplashTexts:false
|
||||
mouseSensitivity:0.5
|
||||
damageTiltStrength:1.0
|
||||
highContrast:false
|
||||
narratorHotkey:true
|
||||
resourcePacks:["vanilla","fabric"]
|
||||
incompatibleResourcePacks:[]
|
||||
lastServer:
|
||||
lang:zh_cn
|
||||
chatVisibility:0
|
||||
chatOpacity:1.0
|
||||
chatLineSpacing:0.0
|
||||
textBackgroundOpacity:0.5
|
||||
backgroundForChatOnly:true
|
||||
hideServerAddress:false
|
||||
advancedItemTooltips:false
|
||||
pauseOnLostFocus:true
|
||||
overrideWidth:0
|
||||
overrideHeight:0
|
||||
chatHeightFocused:1.0
|
||||
chatDelay:0.0
|
||||
chatHeightUnfocused:0.4375
|
||||
chatScale:1.0
|
||||
chatWidth:1.0
|
||||
notificationDisplayTime:1.0
|
||||
useNativeTransport:true
|
||||
mainHand:"right"
|
||||
attackIndicator:1
|
||||
tutorialStep:none
|
||||
mouseWheelSensitivity:1.0
|
||||
rawMouseInput:true
|
||||
glDebugVerbosity:1
|
||||
skipMultiplayerWarning:true
|
||||
hideMatchedNames:true
|
||||
joinedFirstServer:false
|
||||
hideBundleTutorial:false
|
||||
syncChunkWrites:true
|
||||
showAutosaveIndicator:true
|
||||
allowServerListing:true
|
||||
onlyShowSecureChat:false
|
||||
panoramaScrollSpeed:1.0
|
||||
telemetryOptInExtra:false
|
||||
onboardAccessibility:false
|
||||
menuBackgroundBlurriness:5
|
||||
key_key.attack:key.mouse.left
|
||||
key_key.use:key.mouse.right
|
||||
key_key.forward:key.keyboard.w
|
||||
key_key.left:key.keyboard.a
|
||||
key_key.back:key.keyboard.s
|
||||
key_key.right:key.keyboard.d
|
||||
key_key.jump:key.keyboard.space
|
||||
key_key.sneak:key.keyboard.left.shift
|
||||
key_key.sprint:key.keyboard.left.control
|
||||
key_key.drop:key.keyboard.q
|
||||
key_key.inventory:key.keyboard.e
|
||||
key_key.chat:key.keyboard.t
|
||||
key_key.playerlist:key.keyboard.tab
|
||||
key_key.pickItem:key.mouse.middle
|
||||
key_key.command:key.keyboard.slash
|
||||
key_key.socialInteractions:key.keyboard.p
|
||||
key_key.screenshot:key.keyboard.f2
|
||||
key_key.togglePerspective:key.keyboard.f5
|
||||
key_key.smoothCamera:key.keyboard.unknown
|
||||
key_key.fullscreen:key.keyboard.f11
|
||||
key_key.spectatorOutlines:key.keyboard.unknown
|
||||
key_key.swapOffhand:key.keyboard.f
|
||||
key_key.saveToolbarActivator:key.keyboard.unknown
|
||||
key_key.loadToolbarActivator:key.keyboard.unknown
|
||||
key_key.advancements:key.keyboard.l
|
||||
key_key.hotbar.1:key.keyboard.1
|
||||
key_key.hotbar.2:key.keyboard.2
|
||||
key_key.hotbar.3:key.keyboard.3
|
||||
key_key.hotbar.4:key.keyboard.4
|
||||
key_key.hotbar.5:key.keyboard.5
|
||||
key_key.hotbar.6:key.keyboard.6
|
||||
key_key.hotbar.7:key.keyboard.7
|
||||
key_key.hotbar.8:key.keyboard.8
|
||||
key_key.hotbar.9:key.keyboard.9
|
||||
key_key.dynamic_fps.toggle_forced:key.keyboard.unknown
|
||||
key_key.dynamic_fps.toggle_disabled:key.keyboard.unknown
|
||||
key_accessories.key.open_accessories_screen:key.keyboard.unknown
|
||||
key_key.aether.open_accessories.desc:key.keyboard.unknown
|
||||
key_key.aether.gravitite_jump_ability.desc:key.keyboard.unknown
|
||||
key_key.aether.invisibility_toggle.desc:key.keyboard.unknown
|
||||
key_key.entityculling.toggle:key.keyboard.unknown
|
||||
key_key.modmenu.open_menu:key.keyboard.unknown
|
||||
key_key.push_to_talk:key.keyboard.unknown
|
||||
key_key.whisper:key.keyboard.unknown
|
||||
key_key.mute_microphone:key.keyboard.m
|
||||
key_key.disable_voice_chat:key.keyboard.n
|
||||
key_key.hide_icons:key.keyboard.h
|
||||
key_key.voice_chat:key.keyboard.v
|
||||
key_key.voice_chat_settings:key.keyboard.unknown
|
||||
key_key.voice_chat_group:key.keyboard.g
|
||||
key_key.voice_chat_toggle_recording:key.keyboard.unknown
|
||||
key_key.voice_chat_adjust_volumes:key.keyboard.unknown
|
||||
key_zoomify.key.zoom:key.keyboard.c
|
||||
key_zoomify.key.zoom.secondary:key.keyboard.f6
|
||||
key_iris.keybind.reload:key.keyboard.r
|
||||
key_iris.keybind.toggleShaders:key.keyboard.k
|
||||
key_iris.keybind.shaderPackSelection:key.keyboard.o
|
||||
key_key.jei.toggleOverlay:key.keyboard.o
|
||||
key_key.jei.focusSearch:key.keyboard.f
|
||||
key_key.jei.previousPage:key.keyboard.unknown
|
||||
key_key.jei.nextPage:key.keyboard.unknown
|
||||
key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown
|
||||
key_key.jei.bookmark:key.keyboard.a
|
||||
key_key.jei.showRecipe:key.keyboard.r
|
||||
key_key.jei.showRecipe2:key.mouse.left
|
||||
key_key.jei.showUses:key.keyboard.u
|
||||
key_key.jei.showUses2:key.mouse.right
|
||||
key_key.jei.transferRecipeBookmark:key.mouse.left
|
||||
key_key.jei.maxTransferRecipeBookmark:key.mouse.left
|
||||
key_key.jei.clearSearchBar:key.mouse.right
|
||||
key_key.jei.previousSearch:key.keyboard.up
|
||||
key_key.jei.nextSearch:key.keyboard.down
|
||||
key_key.jei.toggleCheatMode:key.keyboard.unknown
|
||||
key_key.jei.cheatOneItem:key.mouse.left
|
||||
key_key.jei.cheatOneItem2:key.mouse.right
|
||||
key_key.jei.cheatItemStack:key.mouse.left
|
||||
key_key.jei.cheatItemStack2:key.mouse.middle
|
||||
key_key.jei.toggleCheatModeConfigButton:key.mouse.left
|
||||
key_key.jei.toggleEditMode:key.keyboard.unknown
|
||||
key_key.jei.toggleHideIngredient:key.mouse.left
|
||||
key_key.jei.toggleWildcardHideIngredient:key.mouse.right
|
||||
key_key.jei.recipeBack:key.keyboard.backspace
|
||||
key_key.jei.previousRecipePage:key.keyboard.page.up
|
||||
key_key.jei.nextRecipePage:key.keyboard.page.down
|
||||
key_key.jei.previousCategory:key.keyboard.page.up
|
||||
key_key.jei.nextCategory:key.keyboard.page.down
|
||||
key_key.jei.closeRecipeGui:key.keyboard.escape
|
||||
key_key.jei.copy.recipe.id:key.keyboard.unknown
|
||||
key_iris.keybind.wireframe:key.keyboard.unknown
|
||||
soundCategory_master:1.0
|
||||
soundCategory_music:1.0
|
||||
soundCategory_record:1.0
|
||||
soundCategory_weather:1.0
|
||||
soundCategory_block:1.0
|
||||
soundCategory_hostile:1.0
|
||||
soundCategory_neutral:1.0
|
||||
soundCategory_player:1.0
|
||||
soundCategory_ambient:1.0
|
||||
soundCategory_voice:1.0
|
||||
modelPart_cape:true
|
||||
modelPart_jacket:true
|
||||
modelPart_left_sleeve:true
|
||||
modelPart_right_sleeve:true
|
||||
modelPart_left_pants_leg:true
|
||||
modelPart_right_pants_leg:true
|
||||
modelPart_hat:true
|
||||
13
clinet-aether/pack.toml
Normal file
13
clinet-aether/pack.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "PT's Basic Modpack for Aether Mod"
|
||||
author = "passthem"
|
||||
version = "1.1.1"
|
||||
pack-format = "packwiz:1.1.0"
|
||||
|
||||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "3ce80806e43c4373a37b6e4b24f3922c9037e155d3f18db0a814c08b8195fa5b"
|
||||
|
||||
[versions]
|
||||
fabric = "0.18.5"
|
||||
minecraft = "1.21.1"
|
||||
13
clinet-aether/shaderpacks/complementary-reimagined.pw.toml
Normal file
13
clinet-aether/shaderpacks/complementary-reimagined.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Complementary Shaders - Reimagined"
|
||||
filename = "ComplementaryReimagined_r5.7.1.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/HVnmMxH1/versions/836bPNGo/ComplementaryReimagined_r5.7.1.zip"
|
||||
hash-format = "sha512"
|
||||
hash = "840149dd8aff5d5d06d0d5a4ea83d4ea7f72eab3cb2b02de513c1f3eaa6e4627f68d9c0915b86fa37edad73cafd4648f156f373da52810cd34c67d797e0f6aef"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "HVnmMxH1"
|
||||
version = "836bPNGo"
|
||||
@ -1,22 +1,45 @@
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
# 面板入口脚本:适合“面板固定执行 start.sh,但只能上传文件/编辑文件”的环境。
|
||||
# 用法:
|
||||
# 1. 下载本文件
|
||||
# 2. 上传到面板,并按需要重命名为面板要求的固定入口名(通常就是 start.sh)
|
||||
# 3. 修改下面几个变量
|
||||
# 4. 点击运行
|
||||
############
|
||||
# 常量定义 #
|
||||
############
|
||||
|
||||
REPO_URL="${REPO_URL:-https://gitea.service.jazzwhom.top/Passthem/pt-minecraft-modpack}"
|
||||
REPO_REF="${REPO_REF:-main}"
|
||||
PT_SERVER="${PT_SERVER:-server-01-random-block}"
|
||||
PT_SERVER="${PT_SERVER:-server-02-skygrid}"
|
||||
INSTALL_DIR="${INSTALL_DIR:-$(pwd)/pt-minecraft-modpack}"
|
||||
ARCHIVE_PATH="${ARCHIVE_PATH:-$(pwd)/pt-minecraft-modpack.tar.gz}"
|
||||
TMP_DIR="${TMP_DIR:-$(pwd)/pt-minecraft-modpack.__tmp}"
|
||||
PT_JAVA_ARGS="${PT_JAVA_ARGS:--Xms1G -Xmx1G}"
|
||||
PT_JAVA_VERSION="${PT_JAVA_VERSION:-17}"
|
||||
SERVER_MEMORY="${SERVER_MEMORY:-2048}"
|
||||
PACKWIZ_INSTALLER_URL="${PACKWIZ_INSTALLER_URL:-https://github.com/packwiz/packwiz-installer/releases/latest/download/packwiz-installer.jar}"
|
||||
|
||||
openjdk8="/usr/bin/jdk/jdk1.8.0_361/bin/java"
|
||||
openjdk11="/usr/bin/jdk/jdk-11.0.18/bin/java"
|
||||
openjdk17="/usr/bin/jdk/jdk-17.0.6/bin/java"
|
||||
openjdk19="/usr/bin/jdk/jdk-19.0.2/bin/java"
|
||||
openjdk21="/usr/bin/jdk/jdk-21.0.2/bin/java"
|
||||
openjdk25="/usr/bin/jdk/jdk-25.0.2/bin/java"
|
||||
|
||||
maxmem=$((SERVER_MEMORY - 1000))
|
||||
|
||||
case "$PT_JAVA_VERSION" in
|
||||
8) JAVA_BIN="$openjdk8" ;;
|
||||
11) JAVA_BIN="$openjdk11" ;;
|
||||
17) JAVA_BIN="$openjdk17" ;;
|
||||
19) JAVA_BIN="$openjdk19" ;;
|
||||
21) JAVA_BIN="$openjdk21" ;;
|
||||
25) JAVA_BIN="$openjdk25" ;;
|
||||
*) JAVA_BIN="java" ;;
|
||||
esac
|
||||
|
||||
PT_JAVA_ARGS="${PT_JAVA_ARGS:--Xms1024M -Xmx${maxmem}M}"
|
||||
|
||||
############
|
||||
# 辅助函数 #
|
||||
############
|
||||
|
||||
log() {
|
||||
printf '[panel-entry] %s\n' "$*"
|
||||
}
|
||||
@ -52,8 +75,13 @@ tar -xzf "$ARCHIVE_PATH" -C "$TMP_DIR"
|
||||
EXTRACTED_DIR="$(find "$TMP_DIR" -mindepth 1 -maxdepth 1 -type d | head -n 1)"
|
||||
[ -n "$EXTRACTED_DIR" ] || fail "解压失败"
|
||||
|
||||
rm -rf "$INSTALL_DIR"
|
||||
mv "$EXTRACTED_DIR" "$INSTALL_DIR"
|
||||
if [ ! -d "$INSTALL_DIR" ]; then
|
||||
mv "$EXTRACTED_DIR" "$INSTALL_DIR"
|
||||
else
|
||||
log "保留现有安装目录,仅覆盖仓库文件"
|
||||
cp -r "$EXTRACTED_DIR"/. "$INSTALL_DIR"/
|
||||
rm -rf "$EXTRACTED_DIR"
|
||||
fi
|
||||
rm -rf "$TMP_DIR" "$ARCHIVE_PATH"
|
||||
|
||||
cd "$INSTALL_DIR"
|
||||
@ -73,6 +101,9 @@ PT_REPO_URL="$REPO_URL" \
|
||||
PT_REPO_REF="$REPO_REF" \
|
||||
PT_SERVER="$PT_SERVER" \
|
||||
PT_JAVA_ARGS="$PT_JAVA_ARGS" \
|
||||
PT_JAVA_VERSION="$PT_JAVA_VERSION" \
|
||||
SERVER_MEMORY="$SERVER_MEMORY" \
|
||||
JAVA_BIN="$JAVA_BIN" \
|
||||
PT_PACKWIZ_BOOTSTRAP_NO_UPDATE="${PT_PACKWIZ_BOOTSTRAP_NO_UPDATE:-1}" \
|
||||
PT_PACKWIZ_BOOTSTRAP_MAIN_JAR="$(pwd)/.pt-panel-runtime/downloads/packwiz-installer.jar" \
|
||||
bash ./start.sh
|
||||
|
||||
50
server-02-skygrid/index.toml
Normal file
50
server-02-skygrid/index.toml
Normal file
@ -0,0 +1,50 @@
|
||||
hash-format = "sha256"
|
||||
|
||||
[[files]]
|
||||
file = "mods/appleskin.pw.toml"
|
||||
hash = "1fc1e482945dff68e6aab34b22d61d054a6177869408ed4af3fef6117a33faab"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/c2me-fabric.pw.toml"
|
||||
hash = "4ee1808a7fb319d469dece5752cedb05dacb9afbe48021fa664f54b8c83fdc45"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/carpet.pw.toml"
|
||||
hash = "b6986c7bdec6840b8a344b4028b0a52be10460f2630223ca88db681b36cd5efa"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/easyauth.pw.toml"
|
||||
hash = "a2cf3825aa8d9cd727953a7496ce4ee781883e958bf0c7b0ae9d60f2c5ab2942"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.pw.toml"
|
||||
hash = "0345fbfa8542b5ec84535fe2aff0f5cc4e801ecc337f926d4e2310b53f458569"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-language-kotlin.pw.toml"
|
||||
hash = "e49f549eecbe502a3da6d731d6e28783631b14b0bba7bba9780a1075e7926776"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lithium.pw.toml"
|
||||
hash = "84957275e9dc6f07f4244ce3303536e3d73b0e72eb1696ccd024168a52c29c98"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/no-chat-reports.pw.toml"
|
||||
hash = "70d7b2bca719eca2b3a1447228b868abdc633c38121652d49f4e34380c44339d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/pt-skygrid-1.0.0.jar"
|
||||
hash = "7cee2610594e69489104ec4711b39d5eb370c0d91a1a8fb82d8e7af1644ffcad"
|
||||
|
||||
[[files]]
|
||||
file = "mods/simple-voice-chat.pw.toml"
|
||||
hash = "44acdef628ff0435c751b93100dd1a3dfabd263039003d39b20cb6f35110060f"
|
||||
metafile = true
|
||||
13
server-02-skygrid/mods/appleskin.pw.toml
Normal file
13
server-02-skygrid/mods/appleskin.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "AppleSkin"
|
||||
filename = "appleskin-fabric-mc1.21.9-3.0.7.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/8sbiz1lS/appleskin-fabric-mc1.21.9-3.0.7.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "79d0d0b4a09140cdb7cf74b1cd71554147c60648beb485ca647b149174e171660ec561ad329da58b78b5de439909b180e287b4b38bf068acfca20666100f4584"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "EsAfCjCV"
|
||||
version = "8sbiz1lS"
|
||||
13
server-02-skygrid/mods/c2me-fabric.pw.toml
Normal file
13
server-02-skygrid/mods/c2me-fabric.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Concurrent Chunk Management Engine (Fabric)"
|
||||
filename = "c2me-fabric-mc1.21.10-0.3.6+alpha.0.9.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/VSNURh3q/versions/2EKX8Hiv/c2me-fabric-mc1.21.10-0.3.6%2Balpha.0.9.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "71e193ecaa38e927a9f943eac6cac5b5dcb4ce6934aae994da9fe34cace5941fe25258056d8b9fdedbda87c5eb3787cad4c74e68ea39048cb6e86202a56dd7ec"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "VSNURh3q"
|
||||
version = "2EKX8Hiv"
|
||||
13
server-02-skygrid/mods/carpet.pw.toml
Normal file
13
server-02-skygrid/mods/carpet.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Carpet"
|
||||
filename = "fabric-carpet-1.21.10-1.4.188+v251016.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/TQTTVgYE/versions/oiUqSOMA/fabric-carpet-1.21.10-1.4.188%2Bv251016.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "dfab93784fcaa73b20854857063025d36a2f7c27397cc64b141fe2c85024993a87936016ac823c2c945f27314b9938aa57e06b55676a1c349c121b445ecfe213"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "TQTTVgYE"
|
||||
version = "oiUqSOMA"
|
||||
13
server-02-skygrid/mods/easyauth.pw.toml
Normal file
13
server-02-skygrid/mods/easyauth.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "EasyAuth"
|
||||
filename = "easyauth-mc1.21.9-3.4.2.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/aZj58GfX/versions/JhU4S1jg/easyauth-mc1.21.9-3.4.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d51bc5781577e841f4ed7c5af211716d21175ba75a4f33ddc89d3dd48bfa6718d77399e00b1416278c4c7f83991e37a3a415dc0e1fdd3b1b447fbf5c81024742"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "aZj58GfX"
|
||||
version = "JhU4S1jg"
|
||||
13
server-02-skygrid/mods/fabric-api.pw.toml
Normal file
13
server-02-skygrid/mods/fabric-api.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Fabric API"
|
||||
filename = "fabric-api-0.138.4+1.21.10.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/tV4Gc0Zo/fabric-api-0.138.4%2B1.21.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5e64c53391dfd1c059777d671c52be17a4e27a29d9bd7340ea9e3f55ce7a770b38db0a15e0966e981ee8c1b9372fb89543a278521624689268acebb85bd5c6e9"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "P7dR8mSH"
|
||||
version = "tV4Gc0Zo"
|
||||
13
server-02-skygrid/mods/fabric-language-kotlin.pw.toml
Normal file
13
server-02-skygrid/mods/fabric-language-kotlin.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Fabric Language Kotlin"
|
||||
filename = "fabric-language-kotlin-1.13.10+kotlin.2.3.20.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/21TRTKmh/fabric-language-kotlin-1.13.10%2Bkotlin.2.3.20.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e4eaf7594de08eb4f3ea8af2e939f3ee61d07597afb4d5f420c3fbadcb381c7bbad4b1afd5919b3087b73ed9636fb018b1c978858a112bd4f6acdcb42e9eedaa"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Ha28R6CL"
|
||||
version = "21TRTKmh"
|
||||
13
server-02-skygrid/mods/lithium.pw.toml
Normal file
13
server-02-skygrid/mods/lithium.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Lithium"
|
||||
filename = "lithium-fabric-0.20.1+mc1.21.10.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/NsswKiwi/lithium-fabric-0.20.1%2Bmc1.21.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "79b2892d123f3bb12649927dd8fccc25c955ff38a19f3aba7cd0180c4cf5506c2a76d49418b13050f90bba7bb59f3623af06e8a275e2ae8c63808084043902bb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gvQqBUqZ"
|
||||
version = "NsswKiwi"
|
||||
13
server-02-skygrid/mods/no-chat-reports.pw.toml
Normal file
13
server-02-skygrid/mods/no-chat-reports.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "No Chat Reports"
|
||||
filename = "NoChatReports-FABRIC-1.21.10-v2.16.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/78RjC1gi/NoChatReports-FABRIC-1.21.10-v2.16.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "39b2f284f73f8290012b8b9cc70085d59668547fc7b4ec43ab34e4bca6b39a6691fbe32bc3326e40353ba9c16a06320e52818315be77799a5aad526370cbc773"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qQyHxfxd"
|
||||
version = "78RjC1gi"
|
||||
BIN
server-02-skygrid/mods/pt-skygrid-1.0.0.jar
Normal file
BIN
server-02-skygrid/mods/pt-skygrid-1.0.0.jar
Normal file
Binary file not shown.
13
server-02-skygrid/mods/simple-voice-chat.pw.toml
Normal file
13
server-02-skygrid/mods/simple-voice-chat.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Simple Voice Chat"
|
||||
filename = "voicechat-fabric-1.21.10-2.6.12.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/n7Kvch7B/voicechat-fabric-1.21.10-2.6.12.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5dc3946095adc241e78f186106c793bc046f45a1d7ad757712618ed6b30fca443dc78b42f646f352135a6f77f912dd54a3332798c8c8642f1963354c28cd09c4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9eGKb6K1"
|
||||
version = "n7Kvch7B"
|
||||
13
server-02-skygrid/pack.toml
Normal file
13
server-02-skygrid/pack.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "PT's Server Modpack 1"
|
||||
author = "passthem"
|
||||
version = "1.0.0"
|
||||
pack-format = "packwiz:1.1.0"
|
||||
|
||||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "21ed850a83cb38f7a29bbf18fd1c77a6631ff9c50e2e23de58d391941f06aa1d"
|
||||
|
||||
[versions]
|
||||
fabric = "0.18.5"
|
||||
minecraft = "1.21.10"
|
||||
61
server-03-aether/index.toml
Normal file
61
server-03-aether/index.toml
Normal file
@ -0,0 +1,61 @@
|
||||
hash-format = "sha256"
|
||||
|
||||
[[files]]
|
||||
file = "mods/aether.pw.toml"
|
||||
hash = "e71c04679ff75573cd8ef1003eb167830f794b8979f2bdd3c99d28793f2918b0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/appleskin.pw.toml"
|
||||
hash = "17fc9c6cab5ae0ea6973440f143ad6ffa4e5d373749c80077b631dbbe4df3f3b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/c2me-fabric.pw.toml"
|
||||
hash = "7432b65e7551434c0ebff536e75f5dfb7e0cedb342ecf231523e4d6ca4e3e417"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/carpet.pw.toml"
|
||||
hash = "bbff83f5167e56b5cfd947b314b3193110d94425c2f45b385e19624a7c5346ef"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/easyauth.pw.toml"
|
||||
hash = "89e18f90b2476b7f9e518cfa237c6daed3091043e3f22db3dd38c2da5b26ede5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.pw.toml"
|
||||
hash = "8b055e1997973e615d20848f0c7d0712ebad4aa24ab8a3ee6d9682ea53642309"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-language-kotlin.pw.toml"
|
||||
hash = "337d97b990f76c91584b12600651ae7bd47a0824e45070b3d9330b0922149fc0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/jei.pw.toml"
|
||||
hash = "76a2560989102413693bbfbea83570287b3dce4f6ed40dc69aacbd3268633fe7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lithium.pw.toml"
|
||||
hash = "23de0cbbfd28d752eb662c00a907406bac3e3ad529dd2ac250b41b4b0ef734ce"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/no-chat-reports.pw.toml"
|
||||
hash = "f3c5cb21ff2e78c7e8cdbd14d1535e6edd464d5a436dbfa4e60b8ea91374674d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/owo-lib.pw.toml"
|
||||
hash = "31e7b4d016cbdf3f0abbb1ab202cf60e84ff8330ebbf6f043739128fb9133fad"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/simple-voice-chat.pw.toml"
|
||||
hash = "22f24722ee27494ff0a78c95496632f2672bcfefbc1e291a1965022374f5d6ae"
|
||||
metafile = true
|
||||
13
server-03-aether/mods/aether.pw.toml
Normal file
13
server-03-aether/mods/aether.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "The Aether"
|
||||
filename = "aether-1.21.1-1.5.11-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YhmgMVyu/versions/NSqdh1i9/aether-1.21.1-1.5.11-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "de78675eb2719965cb1378113cc443c43039ff706ed70824355267f40286ab3abfb3065778ab711a43615c818362dad5e4dca672c3568d90b14b1a86a9037e04"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YhmgMVyu"
|
||||
version = "NSqdh1i9"
|
||||
13
server-03-aether/mods/appleskin.pw.toml
Normal file
13
server-03-aether/mods/appleskin.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "AppleSkin"
|
||||
filename = "appleskin-fabric-mc1.21-3.0.6.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/b5ZiCjAr/appleskin-fabric-mc1.21-3.0.6.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "accbb36b863bdeaaeb001f7552534f3bdf0f27556795cf8e813f9b32e7732450ec5133da5e0ec9b92dc22588c48ffb61577c375f596dc351f15c15ce6a6f4228"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "EsAfCjCV"
|
||||
version = "b5ZiCjAr"
|
||||
13
server-03-aether/mods/c2me-fabric.pw.toml
Normal file
13
server-03-aether/mods/c2me-fabric.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Concurrent Chunk Management Engine (Fabric)"
|
||||
filename = "c2me-fabric-mc1.21.1-0.3.0+alpha.0.363.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/VSNURh3q/versions/mrXmbOac/c2me-fabric-mc1.21.1-0.3.0%2Balpha.0.363.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "82ae4cdadc48ff3cec9aa02c197c6a108eceecbea40041ef3e146548c367548c2d596db5520a4384eceb7cc12e05ea172c29c51370d96fc558daf03c99117a63"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "VSNURh3q"
|
||||
version = "mrXmbOac"
|
||||
13
server-03-aether/mods/carpet.pw.toml
Normal file
13
server-03-aether/mods/carpet.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Carpet"
|
||||
filename = "fabric-carpet-1.21-1.4.147+v240613.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/TQTTVgYE/versions/f2mvlGrg/fabric-carpet-1.21-1.4.147%2Bv240613.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e6f33d13406796a34e7598d997113f25f7bea3e55f9d334b73842adda52b2c5d0a86b7b12ac812d7e758861e3f468bf201c6c710c40162bb79d6818938204151"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "TQTTVgYE"
|
||||
version = "f2mvlGrg"
|
||||
13
server-03-aether/mods/easyauth.pw.toml
Normal file
13
server-03-aether/mods/easyauth.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "EasyAuth"
|
||||
filename = "easyauth-mc1.21-3.4.3.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/aZj58GfX/versions/NQu1Efao/easyauth-mc1.21-3.4.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "823b8fbd3a9560a17a22b39405d339014b8e9801b183209c4f4809b9dcb914eab824808ba17947129ce5de3ded7a930af9bcc329f7e757dc5143e5f28e342201"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "aZj58GfX"
|
||||
version = "NQu1Efao"
|
||||
13
server-03-aether/mods/fabric-api.pw.toml
Normal file
13
server-03-aether/mods/fabric-api.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Fabric API"
|
||||
filename = "fabric-api-0.116.12+1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/Lwt6YYHL/fabric-api-0.116.12%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e2da98d9885b2d1c2d15b77bfdafa5df6c294cc96844ded739c8fd61a358fc69c4c391e3296534ea67806cb8ec8d250c0343c0b237c567d9740c586e6d67333a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "P7dR8mSH"
|
||||
version = "Lwt6YYHL"
|
||||
13
server-03-aether/mods/fabric-language-kotlin.pw.toml
Normal file
13
server-03-aether/mods/fabric-language-kotlin.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Fabric Language Kotlin"
|
||||
filename = "fabric-language-kotlin-1.13.11+kotlin.2.3.21.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/2i87JpYj/fabric-language-kotlin-1.13.11%2Bkotlin.2.3.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fa5ed2613f7216999cc0c5ddc71906f082a32b52507d7160acbdcf0eb8de12993ba302e5afde6681d025008ecc66c7533fc0c21deb672ef681b2194fb9be4245"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Ha28R6CL"
|
||||
version = "2i87JpYj"
|
||||
13
server-03-aether/mods/jei.pw.toml
Normal file
13
server-03-aether/mods/jei.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Just Enough Items (JEI)"
|
||||
filename = "jei-1.21.1-fabric-19.27.0.340.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/TvqzuFwN/jei-1.21.1-fabric-19.27.0.340.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "04d4067931010578b55aee55b1e38f7ea2ea3ce8d258ae5d9ece7facfcfcb41349a457ca8bd2ca502577616b84b1c14dbd00b2985ffc6cde5c3d1ec2dd214a04"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "u6dRKJwZ"
|
||||
version = "TvqzuFwN"
|
||||
13
server-03-aether/mods/lithium.pw.toml
Normal file
13
server-03-aether/mods/lithium.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Lithium"
|
||||
filename = "lithium-fabric-0.15.3+mc1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/XQJtuOTA/lithium-fabric-0.15.3%2Bmc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8c576d519121b0c2521101d2209eccd85d560b097fcb847aa54c51cd0d3f3947676f01c8d99913f514487c8e0972a1cf5f3da0c9ef0ec9bacdf2baeb4eb7d1a7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gvQqBUqZ"
|
||||
version = "XQJtuOTA"
|
||||
13
server-03-aether/mods/no-chat-reports.pw.toml
Normal file
13
server-03-aether/mods/no-chat-reports.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "No Chat Reports"
|
||||
filename = "NoChatReports-FABRIC-1.21.1-v2.9.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/D8K0KJXM/NoChatReports-FABRIC-1.21.1-v2.9.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "23bb4a8a6a3f7071281cf97560e12f37e1f5f638a156e3fcb92a50ff0091f1fcfa3e090e7745e4b1175e7c2c784e38d73536a1044db1bf225a182fab758a5a29"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qQyHxfxd"
|
||||
version = "D8K0KJXM"
|
||||
13
server-03-aether/mods/owo-lib.pw.toml
Normal file
13
server-03-aether/mods/owo-lib.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "oωo (owo-lib)"
|
||||
filename = "owo-lib-0.13.0-alpha.15+1.21.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ccKDOlHs/versions/m3XmDd8j/owo-lib-0.13.0-alpha.15%2B1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "939299e72209f8e5a4937fbb2290ed63f7bc5caf2677e6d9fbea8be8049d5ad39c1173f0b61abae7cfddcf7cceb9802f7e2d60b9e8a0fdda399fcbad8f0ac5b4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ccKDOlHs"
|
||||
version = "m3XmDd8j"
|
||||
13
server-03-aether/mods/simple-voice-chat.pw.toml
Normal file
13
server-03-aether/mods/simple-voice-chat.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Simple Voice Chat"
|
||||
filename = "voicechat-fabric-1.21.1-2.6.17.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/CFP1TPw9/voicechat-fabric-1.21.1-2.6.17.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2bfb79e7a3e66fe623cdced43bce444814b11ef5f88cacf79086d01a40df1bd5f88dbe332dbe217f35dca8cf7bf31541ac24ff0443ec72bdaf10a733056cd88a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9eGKb6K1"
|
||||
version = "CFP1TPw9"
|
||||
13
server-03-aether/pack.toml
Normal file
13
server-03-aether/pack.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "PT's Server Modpack 3"
|
||||
author = "passthem"
|
||||
version = "1.0.0"
|
||||
pack-format = "packwiz:1.1.0"
|
||||
|
||||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "e9dbb5363199964833e0e9021f841d6b80abeff6ae2f8261da3958f92c621b58"
|
||||
|
||||
[versions]
|
||||
fabric = "0.18.5"
|
||||
minecraft = "1.21.1"
|
||||
Reference in New Issue
Block a user