first commit
This commit is contained in:
commit
7e548fd6b0
96 changed files with 3424 additions and 0 deletions
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
# Docker Runtime Data & Volumes
|
||||||
|
**/runtime/data/world/
|
||||||
|
**/runtime/data/world_backup_*
|
||||||
|
**/runtime/data/logs/
|
||||||
|
**/runtime/data/crash-reports/
|
||||||
|
**/runtime/data/simplebackups/
|
||||||
|
**/runtime/data/.cache/
|
||||||
|
**/runtime/data/modernfix/
|
||||||
|
**/runtime/data/tmp_lts_build/
|
||||||
|
**/runtime/data/usercache.json
|
||||||
|
**/runtime/data/usernamecache.json
|
||||||
|
**/runtime/data/.rcon-cli.env
|
||||||
|
**/runtime/data/.rcon-cli.yaml
|
||||||
|
**/runtime/data/.run-forge.env
|
||||||
|
**/runtime/data/mods/*.jar
|
||||||
|
# System & IDE files
|
||||||
|
.DS_Store
|
||||||
|
*.swp
|
||||||
|
*.bak
|
||||||
38
README.md
Normal file
38
README.md
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
# Minecraft Server Infrastructure Repository
|
||||||
|
|
||||||
|
Mono-repo containing infrastructure baselines, operational runbooks, and instance profile specifications for containerized Minecraft servers.
|
||||||
|
|
||||||
|
## Repository Architecture
|
||||||
|
|
||||||
|
```text
|
||||||
|
.
|
||||||
|
├── .gitignore
|
||||||
|
├── README.md
|
||||||
|
├── docs/
|
||||||
|
│ ├── infrastructure-base.md # Cloud VM, host OS, BBR, UFW, & Docker daemon baseline
|
||||||
|
│ └── operations-manual.md # Daily administration, RCON guide, log filtering, & clean state runbooks
|
||||||
|
└── instances/
|
||||||
|
└── forge-1.20.1-survival/ # Instance profile (Forge 1.20.1)
|
||||||
|
├── README.md # Instance spec, Compose config, JVM flags, & Mod Manifest (62 mods)
|
||||||
|
├── mod-configs.md # Mod configuration matrix & validated TOML/JSON schemas
|
||||||
|
├── patches/
|
||||||
|
│ └── lts-auth/ # LTS Auth source code & in-container build script
|
||||||
|
└── runtime/ # Active Docker runtime directory
|
||||||
|
├── docker-compose.yml # Production compose stack
|
||||||
|
└── data/ # Minecraft server data volume
|
||||||
|
```
|
||||||
|
|
||||||
|
## Quick Start (Deploying Instance)
|
||||||
|
|
||||||
|
1. Navigate to the instance runtime folder:
|
||||||
|
```bash
|
||||||
|
cd instances/forge-1.20.1-survival/runtime
|
||||||
|
```
|
||||||
|
2. Start the container:
|
||||||
|
```bash
|
||||||
|
docker compose up -d
|
||||||
|
```
|
||||||
|
3. Stream startup logs:
|
||||||
|
```bash
|
||||||
|
docker logs -f mc_forge_server
|
||||||
|
```
|
||||||
48
docs/infrastructure-base.md
Normal file
48
docs/infrastructure-base.md
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
# Infrastructure & Host Baseline Setup Guide
|
||||||
|
|
||||||
|
## 1. Cloud Hardware Baseline
|
||||||
|
* **Provider**: Oracle Cloud Infrastructure (OCI)
|
||||||
|
* **Architecture**: Ampere A1 Flex (`aarch64` / ARM64)
|
||||||
|
* **Resources**: 4 OCPUs (Neoverse N1), 24 GB System RAM
|
||||||
|
* **Memory Strategy**:
|
||||||
|
* Container JVM Heap (`-Xmx12G -Xms12G`): Allocated per instance manifest
|
||||||
|
* Host OS & Page Cache: Minimum 12 GB reserved for kernel, filesystem page cache, and Docker daemon overhead
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 2. Host OS & Network Optimization
|
||||||
|
|
||||||
|
### Firewall Configuration (UFW)
|
||||||
|
Allocate port ranges to support primary and secondary instances:
|
||||||
|
```bash
|
||||||
|
# Primary Instance Ports (Java + Simple Voice Chat)
|
||||||
|
sudo ufw allow 25565/tcp comment 'MC Java Port - Primary Instance'
|
||||||
|
sudo ufw allow 24454/udp comment 'Voice Chat Port - Primary Instance'
|
||||||
|
|
||||||
|
# Secondary Instance Ports
|
||||||
|
sudo ufw allow 25566/tcp comment 'MC Java Port - Secondary Instance'
|
||||||
|
sudo ufw allow 24455/udp comment 'Voice Chat Port - Secondary Instance'
|
||||||
|
|
||||||
|
sudo ufw enable
|
||||||
|
```
|
||||||
|
|
||||||
|
### Linux Kernel TCP Optimization (BBR + FQ)
|
||||||
|
Enable Bottleneck Bandwidth and RTT (BBR) congestion control to minimize network latency:
|
||||||
|
```bash
|
||||||
|
sudo modprobe tcp_bbr
|
||||||
|
sudo bash -c 'cat <<EOF > /etc/sysctl.d/99-minecraft.conf
|
||||||
|
net.core.default_qdisc=fq
|
||||||
|
net.ipv4.tcp_congestion_control=bbr
|
||||||
|
EOF'
|
||||||
|
sudo sysctl --system
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 3. Host Ownership Safeguard
|
||||||
|
|
||||||
|
Ensure host user retains ownership of container data to prevent `PermissionError (EACCES)`:
|
||||||
|
```bash
|
||||||
|
sudo chown -R $USER:$USER ./data
|
||||||
|
chmod -R u+rwX ./data
|
||||||
|
```
|
||||||
103
docs/operations-manual.md
Normal file
103
docs/operations-manual.md
Normal file
|
|
@ -0,0 +1,103 @@
|
||||||
|
# Server Operations & Administration Manual
|
||||||
|
|
||||||
|
## 1. Instance Target Context
|
||||||
|
Set the active container target in your shell session:
|
||||||
|
```bash
|
||||||
|
export INSTANCE_NAME="mc_forge_server"
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 2. Data Preservation Reference Matrix
|
||||||
|
|
||||||
|
When performing world resets or maintenance, classify directories according to this matrix:
|
||||||
|
|
||||||
|
| Category | Directory / File Path | Purpose | Action on Reset |
|
||||||
|
| :--- | :--- | :--- | :--- |
|
||||||
|
| **Immutable** | `data/config/` | Mod configuration files | **Preserve** |
|
||||||
|
| **Immutable** | `data/mods/` | Server mod JAR files | **Preserve** |
|
||||||
|
| **Immutable** | `data/server.properties` | Generated server settings | **Preserve** |
|
||||||
|
| **Immutable** | `data/eula.txt` | EULA agreement file | **Preserve** |
|
||||||
|
| **Volatile** | `data/world/` | Dynamic terrain & player data | Delete to reset seed |
|
||||||
|
| **Volatile** | `data/logs/` | Server console log files | Safe to purge |
|
||||||
|
| **Volatile** | `data/crash-reports/` | Crash stack traces | Safe to purge |
|
||||||
|
| **Volatile** | `data/simplebackups/` | World backup archives | Store or purge |
|
||||||
|
| **Volatile** | `data/.cache/` | Mod resource cache | Safe to purge |
|
||||||
|
| **Volatile** | `data/modernfix/` | Structure cache files | Safe to purge |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 3. Lifecycle & Reset Workflows
|
||||||
|
|
||||||
|
### Clean World Reset (Preserving Configs & Mods)
|
||||||
|
```bash
|
||||||
|
docker stop $INSTANCE_NAME
|
||||||
|
mv data/world data/world_backup_$(date +%Y%m%d_%H%M%S)
|
||||||
|
docker start $INSTANCE_NAME
|
||||||
|
```
|
||||||
|
|
||||||
|
### Targeted Dimensional Wipes
|
||||||
|
```bash
|
||||||
|
docker stop $INSTANCE_NAME
|
||||||
|
rm -rf data/world/DIM-1 # Nether
|
||||||
|
rm -rf data/world/DIM1 # End
|
||||||
|
docker start $INSTANCE_NAME
|
||||||
|
```
|
||||||
|
|
||||||
|
### Full Nuclear Server Reset
|
||||||
|
```bash
|
||||||
|
docker compose down
|
||||||
|
rm -rf data/world data/logs/* data/crash-reports/* data/.cache data/modernfix/structureCacheV1 data/usercache.json data/banned-players.json data/banned-ips.json data/ops.json
|
||||||
|
docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
### Host File Ownership Recovery
|
||||||
|
```bash
|
||||||
|
sudo chown -R $USER:$USER ./data
|
||||||
|
chmod -R u+rwX ./data
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 4. Diagnostics & Telemetry
|
||||||
|
|
||||||
|
### Log Filter Pipeline (Errors & Warnings)
|
||||||
|
```bash
|
||||||
|
docker logs $INSTANCE_NAME 2>&1 | grep -iE "ERROR|WARN|Exception|Fatal|Failed|Caused by" | tail -n 60
|
||||||
|
```
|
||||||
|
|
||||||
|
### Health & Container Status Check
|
||||||
|
```bash
|
||||||
|
docker ps -f "name=$INSTANCE_NAME" --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}"
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 5. RCON Command Reference
|
||||||
|
|
||||||
|
### Chunky Pre-Generation
|
||||||
|
```bash
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "chunky shape circle"
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "chunky center 0 0"
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "chunky radius 4000"
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "chunky start"
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "chunky progress"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Performance Profiling (spark)
|
||||||
|
```bash
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "spark profiler --timeout 30"
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "spark healthreport"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Claim Management (FLAN)
|
||||||
|
```bash
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "flan reload"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Moderation & Player Control
|
||||||
|
```bash
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "whitelist add <player>"
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "tp <player1> <player2>"
|
||||||
|
docker exec -i $INSTANCE_NAME rcon-cli "gamerule keepInventory true"
|
||||||
|
```
|
||||||
126
instances/forge-1.20.1-survival/README.md
Normal file
126
instances/forge-1.20.1-survival/README.md
Normal file
|
|
@ -0,0 +1,126 @@
|
||||||
|
# Instance Specification: Forge 1.20.1 Survival Modpack
|
||||||
|
|
||||||
|
## 1. Overview & Compose Profile
|
||||||
|
* **Instance ID**: `forge-1.20.1-survival`
|
||||||
|
* **Container Name**: `mc_forge_server`
|
||||||
|
* **Minecraft Version**: `1.20.1`
|
||||||
|
* **Mod Loader**: Forge (`47.4.10`)
|
||||||
|
* **Java Runtime**: OpenJDK 17 (`itzg/minecraft-server:java17`)
|
||||||
|
|
||||||
|
> **JVM Flag Rule**: `-XX:+UnlockExperimentalVMOptions` must precede experimental flags in `JVM_OPTS` to avoid JVM start failure on OpenJDK 17.
|
||||||
|
|
||||||
|
### `docker-compose.yml` Reference
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
services:
|
||||||
|
mc:
|
||||||
|
image: itzg/minecraft-server:java17
|
||||||
|
container_name: mc_forge_server
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "25565:25565"
|
||||||
|
- "24454:24454/udp"
|
||||||
|
environment:
|
||||||
|
EULA: "TRUE"
|
||||||
|
TYPE: "FORGE"
|
||||||
|
VERSION: "1.20.1"
|
||||||
|
MEMORY: "12G"
|
||||||
|
|
||||||
|
VIEW_DISTANCE: "8"
|
||||||
|
SIMULATION_DISTANCE: "6"
|
||||||
|
NETWORK_COMPRESSION_THRESHOLD: "256"
|
||||||
|
MAX_TICK_TIME: "60000"
|
||||||
|
SYNC_CHUNK_WRITES: "FALSE"
|
||||||
|
ENABLE_STATUS: "TRUE"
|
||||||
|
MOTD: "MC SotoHome!"
|
||||||
|
MAX_PLAYERS: "15"
|
||||||
|
DIFFICULTY: "hard"
|
||||||
|
ONLINE_MODE: "FALSE"
|
||||||
|
|
||||||
|
JVM_OPTS: >-
|
||||||
|
-XX:+UnlockExperimentalVMOptions
|
||||||
|
-XX:+UseG1GC
|
||||||
|
-XX:MaxGCPauseMillis=50
|
||||||
|
-XX:G1HeapRegionSize=8M
|
||||||
|
-XX:G1ReservePercent=15
|
||||||
|
-XX:InitiatingHeapOccupancyPercent=45
|
||||||
|
-XX:G1MixedGCCountTarget=4
|
||||||
|
-XX:G1HeapWastePercent=5
|
||||||
|
-XX:G1NewSizePercent=30
|
||||||
|
-XX:G1MaxNewSizePercent=40
|
||||||
|
-XX:SurvivorRatio=8
|
||||||
|
-XX:MaxTenuringThreshold=1
|
||||||
|
-XX:+DisableExplicitGC
|
||||||
|
-XX:+AlwaysPreTouch
|
||||||
|
volumes:
|
||||||
|
- ./data:/data
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 2. Server Mod Manifest (62 Mods)
|
||||||
|
|
||||||
|
```text
|
||||||
|
[forge]ctov-3.4.14.jar
|
||||||
|
ad_astra-forge-1.20.1-1.15.20.jar
|
||||||
|
ad_astra_extra_additions-1.20.1-1.1.1.jar
|
||||||
|
ad_astra_more_structures-1.0.1-forge.jar
|
||||||
|
alexsmobs-1.22.9.jar
|
||||||
|
architectury-9.2.14-forge.jar
|
||||||
|
bettercombat-forge-1.9.0+1.20.1.jar
|
||||||
|
Botania-1.20.1-454-FORGE.jar
|
||||||
|
botarium-forge-1.20.1-2.3.4.jar
|
||||||
|
Chunky-1.3.146.jar
|
||||||
|
citadel-2.6.3-1.20.1.jar
|
||||||
|
cloth-config-11.1.136-forge.jar
|
||||||
|
Clumps-forge-1.20.1-12.0.0.4.jar
|
||||||
|
connectivity-1.20.1-7.6.jar
|
||||||
|
corpse-forge-1.20.1-1.0.23.jar
|
||||||
|
create-1.20.1-6.0.8.jar
|
||||||
|
create_ad_astra_recipes-1.0.0-forge-1.20.1.jar
|
||||||
|
createaddition-1.20.1-1.3.3.jar
|
||||||
|
cupboard-1.20.1-3.7.jar
|
||||||
|
curios-forge-5.14.1+1.20.1.jar
|
||||||
|
decocraft-3.0.4-1.20.1-slim.jar
|
||||||
|
FarmersDelight-1.20.1-1.3.2.jar
|
||||||
|
ferritecore-6.0.1-forge.jar
|
||||||
|
flan-1.20.1-1.11.16-forge.jar
|
||||||
|
geckolib-forge-1.20.1-4.8.4.jar
|
||||||
|
ImmersiveEngineering-1.20.1-10.2.0-183.jar
|
||||||
|
improvedmobs-1.20.1-1.13.7-forge.jar
|
||||||
|
irons_lib-1.20.1-2.1.0.jar
|
||||||
|
irons_spellbooks-1.20.1-3.16.2.jar
|
||||||
|
Jade-1.20.1-Forge-11.13.3.jar
|
||||||
|
jei-1.20.1-forge-15.48.0.180.jar
|
||||||
|
journeymap-forge-1.20.1-6.0.0.jar
|
||||||
|
Krypton Reno-forge-1.20.1-26.1.1-1.20.1.jar
|
||||||
|
lithostitched-forge-1.20.1-1.4.11.jar
|
||||||
|
locks_reforged-1.6.1.jar
|
||||||
|
lts_auth-1.0.1+mc1.20.1.jar
|
||||||
|
LuckPerms-Forge-5.4.102.jar
|
||||||
|
majrusz-library-forge-1.20.1-7.0.8.jar
|
||||||
|
majruszs-difficulty-forge-1.20.1-1.9.10.jar
|
||||||
|
mcda-5.0.2.jar
|
||||||
|
mcdw-9.0.4.jar
|
||||||
|
minecraft-comes-alive-7.6.28-beta.10+1.20.1-universal.jar
|
||||||
|
modernfix-forge-5.27.66+mc1.20.1.jar
|
||||||
|
Nullscape_1.20.x_v1.2.8.jar
|
||||||
|
Patchouli-1.20.1-85-FORGE.jar
|
||||||
|
perspatium-1.20.1-1.2.0.jar
|
||||||
|
planets+-bv1.7.5-1.20x.jar
|
||||||
|
player-animation-lib-forge-1.0.2-rc1+1.20.jar
|
||||||
|
resourcefulconfig-forge-1.20.1-2.1.3.jar
|
||||||
|
resourcefullib-forge-1.20.1-2.1.29.jar
|
||||||
|
SimpleBackups-1.20.1-3.1.24.jar
|
||||||
|
sophisticatedbackpacks-1.20.1-3.24.63.2049.jar
|
||||||
|
sophisticatedcore-1.20.1-1.3.75.2231.jar
|
||||||
|
spark-1.10.53-forge.jar
|
||||||
|
tectonic-3.0.17-forge-1.20.1.jar
|
||||||
|
tenshilib-1.20.1-1.7.6-forge.jar
|
||||||
|
Terralith_1.20.x_v2.5.4.jar
|
||||||
|
voicechat-forge-1.20.1-2.6.22.jar
|
||||||
|
YungsApi-1.20-Forge-4.0.6.jar
|
||||||
|
YungsBetterDungeons-1.20-Forge-4.0.4.jar
|
||||||
|
YungsBetterMineshafts-1.20-Forge-4.0.4.jar
|
||||||
|
YungsBetterStrongholds-1.20-Forge-4.0.3.jar
|
||||||
|
```
|
||||||
83
instances/forge-1.20.1-survival/mod-configs.md
Normal file
83
instances/forge-1.20.1-survival/mod-configs.md
Normal file
|
|
@ -0,0 +1,83 @@
|
||||||
|
# Mod Configurations Matrix & Schemas
|
||||||
|
|
||||||
|
## Summary Matrix
|
||||||
|
|
||||||
|
| Mod | Config File Path | Key Setting | Value | Purpose |
|
||||||
|
| :--- | :--- | :--- | :--- | :--- |
|
||||||
|
| **LTS Auth** | `runtime/data/mods/lts_auth-*.jar` | `m_6842_`, Event Cancellation | `36000` ticks | Ingame auth, invulnerability lock, 30m timeout |
|
||||||
|
| **FLAN** | `runtime/data/config/flan/flan_config.json` | `Visitor` rights | `break: false`, `open_container: true` | Anti-griefing with permitted container access |
|
||||||
|
| **Locks Reforged** | `runtime/data/config/locks-common.toml` | `strictLockPicking` | `true` | Enforces tier-matched lockpicking |
|
||||||
|
| **Improved Mobs** | `runtime/data/config/improvedmobs/common.toml` | `"Enable difficulty scaling"` | `false` | Disables time-based scaling & HUD banner |
|
||||||
|
| **Majrusz Difficulty** | `runtime/data/config/majruszsdifficulty.json` | `is_per_player_difficulty_enabled` | `true` | Isolated per-player milestone progression |
|
||||||
|
| **Create Addition** | `runtime/data/config/createaddition-common.toml` | `generator_efficiency` | `0.5` | Tech power generation rebalance |
|
||||||
|
| **Sophisticated Backpacks** | `runtime/data/config/sophisticatedbackpacks-common.toml` | `enabledItems` | Tier 3/4 upgrades = `false` | Cap portable storage capacity |
|
||||||
|
| **JourneyMap** | `runtime/data/journeymap/server/6.0/*.config` | `radarEnabled` | `"Disabled"` | Disable radar and wallhacks |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Validated Configuration Code Snippets
|
||||||
|
|
||||||
|
### 1. Locks Reforged (`runtime/data/config/locks-common.toml`)
|
||||||
|
```toml
|
||||||
|
"Lock Generation Chance" = 1.0
|
||||||
|
"Generation Enchant Chance" = 0.4
|
||||||
|
"Generated Locks" = ["locks:wood_lock", "locks:copper_lock", "locks:iron_lock", "locks:steel_lock", "locks:gold_lock", "locks:diamond_lock", "locks:netherite_lock"]
|
||||||
|
"Generated Lock Chances" = [3, 3, 3, 2, 2, 1, 1]
|
||||||
|
|
||||||
|
[lock_picking]
|
||||||
|
strictLockPicking = true
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. Improved Mobs (`runtime/data/config/improvedmobs/common.toml`)
|
||||||
|
```toml
|
||||||
|
[general]
|
||||||
|
"Enable difficulty scaling" = false
|
||||||
|
|
||||||
|
[ai]
|
||||||
|
"Breaker Chance" = 0.0
|
||||||
|
"Break BlockEntities" = false
|
||||||
|
```
|
||||||
|
|
||||||
|
### 3. FLAN (`runtime/data/config/flan/flan_config.json`)
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"defaultGroups": {
|
||||||
|
"Visitor": {
|
||||||
|
"flan:open_container": true,
|
||||||
|
"flan:break": false,
|
||||||
|
"flan:place": false,
|
||||||
|
"flan:explosions": false,
|
||||||
|
"flan:bucket": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 4. Sophisticated Backpacks (`runtime/data/config/sophisticatedbackpacks-common.toml`)
|
||||||
|
```toml
|
||||||
|
[common]
|
||||||
|
chestLootEnabled = true
|
||||||
|
|
||||||
|
[enabledItems]
|
||||||
|
"sophisticatedbackpacks:stack_upgrade_tier_3|false" = false
|
||||||
|
"sophisticatedbackpacks:stack_upgrade_tier_4|false" = false
|
||||||
|
```
|
||||||
|
|
||||||
|
### 5. Majrusz's Progressive Difficulty (`runtime/data/config/majruszsdifficulty.json`)
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"game_stages": {
|
||||||
|
"is_per_player_difficulty_enabled": true,
|
||||||
|
"list": [
|
||||||
|
{
|
||||||
|
"id": "expert",
|
||||||
|
"triggers": { "dimensions": ["minecraft:the_nether"] }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "master",
|
||||||
|
"triggers": { "dimensions": ["minecraft:the_end"] }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
@ -0,0 +1,49 @@
|
||||||
|
package com.rtxbb.lts_auth.command;
|
||||||
|
|
||||||
|
import com.mojang.brigadier.CommandDispatcher;
|
||||||
|
import com.mojang.brigadier.arguments.StringArgumentType;
|
||||||
|
import com.mojang.brigadier.context.CommandContext;
|
||||||
|
import com.rtxbb.lts_auth.LtsAuthMod;
|
||||||
|
import com.rtxbb.lts_auth.manager.AuthManager;
|
||||||
|
import net.minecraft.commands.CommandSourceStack;
|
||||||
|
import net.minecraft.commands.Commands;
|
||||||
|
import net.minecraft.network.chat.Component;
|
||||||
|
import net.minecraft.server.level.ServerPlayer;
|
||||||
|
|
||||||
|
public class LoginCommand {
|
||||||
|
public static void register(CommandDispatcher<CommandSourceStack> dispatcher) {
|
||||||
|
dispatcher.register(
|
||||||
|
Commands.m_82127_("login")
|
||||||
|
.then(Commands.m_82129_("password", StringArgumentType.string())
|
||||||
|
.executes(LoginCommand::execute)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int execute(CommandContext<CommandSourceStack> ctx) {
|
||||||
|
try {
|
||||||
|
ServerPlayer player = ctx.getSource().m_81375_();
|
||||||
|
String password = StringArgumentType.getString(ctx, "password");
|
||||||
|
|
||||||
|
if (!AuthManager.getInstance().isRegistered(player.m_20148_())) {
|
||||||
|
ctx.getSource().m_81352_(Component.m_237113_(LtsAuthMod.messages().getColored("messages.not_registered")));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (AuthManager.getInstance().isAuthenticated(player.m_20148_())) {
|
||||||
|
ctx.getSource().m_81352_(Component.m_237113_(LtsAuthMod.messages().getColored("messages.already_logged_in")));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (AuthManager.getInstance().login(player, password)) {
|
||||||
|
player.m_6842_(false);
|
||||||
|
return 1;
|
||||||
|
} else {
|
||||||
|
ctx.getSource().m_81352_(Component.m_237113_(LtsAuthMod.messages().getColored("messages.invalid_password")));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
165
instances/forge-1.20.1-survival/patches/lts-auth/LtsAuthMod.java
Normal file
165
instances/forge-1.20.1-survival/patches/lts-auth/LtsAuthMod.java
Normal file
|
|
@ -0,0 +1,165 @@
|
||||||
|
package com.rtxbb.lts_auth;
|
||||||
|
|
||||||
|
import com.rtxbb.lts_auth.command.LoginCommand;
|
||||||
|
import com.rtxbb.lts_auth.command.RegisterCommand;
|
||||||
|
import com.rtxbb.lts_auth.config.MessageManager;
|
||||||
|
import com.rtxbb.lts_auth.manager.AuthManager;
|
||||||
|
import com.mojang.logging.LogUtils;
|
||||||
|
import net.minecraft.network.chat.Component;
|
||||||
|
import net.minecraft.server.level.ServerPlayer;
|
||||||
|
import net.minecraftforge.common.MinecraftForge;
|
||||||
|
import net.minecraftforge.event.RegisterCommandsEvent;
|
||||||
|
import net.minecraftforge.event.TickEvent;
|
||||||
|
import net.minecraftforge.event.entity.item.ItemTossEvent;
|
||||||
|
import net.minecraftforge.event.entity.living.LivingAttackEvent;
|
||||||
|
import net.minecraftforge.event.entity.living.LivingHurtEvent;
|
||||||
|
import net.minecraftforge.event.entity.player.EntityItemPickupEvent;
|
||||||
|
import net.minecraftforge.event.entity.player.PlayerEvent;
|
||||||
|
import net.minecraftforge.event.entity.player.PlayerInteractEvent;
|
||||||
|
import net.minecraftforge.event.level.BlockEvent;
|
||||||
|
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
||||||
|
import net.minecraftforge.fml.common.Mod;
|
||||||
|
import net.minecraftforge.fml.loading.FMLPaths;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
@Mod("lts_auth")
|
||||||
|
public class LtsAuthMod {
|
||||||
|
public static final String MODID = "lts_auth";
|
||||||
|
private static final Logger LOGGER = LogUtils.getLogger();
|
||||||
|
private static final MessageManager MESSAGE_MANAGER = new MessageManager(FMLPaths.CONFIGDIR.get().resolve("lts_auth").resolve("messages.yml"));
|
||||||
|
private final Map<UUID, Integer> joinTicks = new HashMap<>();
|
||||||
|
|
||||||
|
public LtsAuthMod() {
|
||||||
|
MESSAGE_MANAGER.load();
|
||||||
|
MinecraftForge.EVENT_BUS.register(this);
|
||||||
|
LOGGER.info(messages().get("messages.mod_initialized"));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static MessageManager messages() {
|
||||||
|
return MESSAGE_MANAGER;
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRegisterCommands(RegisterCommandsEvent event) {
|
||||||
|
RegisterCommand.register(event.getDispatcher());
|
||||||
|
LoginCommand.register(event.getDispatcher());
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onPlayerJoin(PlayerEvent.PlayerLoggedInEvent event) {
|
||||||
|
if (event.getEntity() instanceof ServerPlayer player) {
|
||||||
|
AuthManager.getInstance().logout(player.m_20148_());
|
||||||
|
joinTicks.put(player.m_20148_(), 0);
|
||||||
|
if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) {
|
||||||
|
player.m_6842_(true);
|
||||||
|
}
|
||||||
|
if (AuthManager.getInstance().isRegistered(player.m_20148_())) {
|
||||||
|
player.m_213846_(Component.m_237113_(messages().getColored("messages.login_prompt")));
|
||||||
|
} else {
|
||||||
|
player.m_213846_(Component.m_237113_(messages().getColored("messages.register_prompt")));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onPlayerQuit(PlayerEvent.PlayerLoggedOutEvent event) {
|
||||||
|
AuthManager.getInstance().logout(event.getEntity().m_20148_());
|
||||||
|
joinTicks.remove(event.getEntity().m_20148_());
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onServerTick(TickEvent.ServerTickEvent event) {
|
||||||
|
if (event.phase == TickEvent.Phase.END) {
|
||||||
|
Map<UUID, Integer> ticksCopy = new HashMap<>(joinTicks);
|
||||||
|
for (UUID uuid : ticksCopy.keySet()) {
|
||||||
|
if (!AuthManager.getInstance().isAuthenticated(uuid)) {
|
||||||
|
int ticks = joinTicks.get(uuid) + 1;
|
||||||
|
joinTicks.put(uuid, ticks);
|
||||||
|
ServerPlayer player = event.getServer().m_6846_().m_11259_(uuid);
|
||||||
|
if (player != null) {
|
||||||
|
if (ticks % 100 == 0) {
|
||||||
|
if (AuthManager.getInstance().isRegistered(uuid)) {
|
||||||
|
player.m_240418_(Component.m_237113_(messages().getColored("messages.login_reminder")), true);
|
||||||
|
} else {
|
||||||
|
player.m_240418_(Component.m_237113_(messages().getColored("messages.register_reminder")), true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (ticks >= 36000) {
|
||||||
|
player.f_8906_.m_9942_(Component.m_237113_(messages().getColored("messages.timeout_kick")));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
joinTicks.remove(uuid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onPlayerMove(TickEvent.PlayerTickEvent event) {
|
||||||
|
if (event.phase == TickEvent.Phase.START && event.player instanceof ServerPlayer player) {
|
||||||
|
if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) {
|
||||||
|
player.m_6842_(true);
|
||||||
|
player.m_6021_(player.m_20185_(), player.m_20186_(), player.m_20189_());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onPlayerInteract(PlayerInteractEvent event) {
|
||||||
|
if (event.getEntity() instanceof ServerPlayer player) {
|
||||||
|
if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) {
|
||||||
|
event.setCanceled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onLivingHurt(LivingHurtEvent event) {
|
||||||
|
if (event.getEntity() instanceof ServerPlayer player) {
|
||||||
|
if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) {
|
||||||
|
event.setCanceled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onLivingAttack(LivingAttackEvent event) {
|
||||||
|
if (event.getEntity() instanceof ServerPlayer player) {
|
||||||
|
if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) {
|
||||||
|
event.setCanceled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onBlockBreak(BlockEvent.BreakEvent event) {
|
||||||
|
if (event.getPlayer() instanceof ServerPlayer player) {
|
||||||
|
if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) {
|
||||||
|
event.setCanceled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onItemPickup(EntityItemPickupEvent event) {
|
||||||
|
if (event.getEntity() instanceof ServerPlayer player) {
|
||||||
|
if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) {
|
||||||
|
event.setCanceled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onItemToss(ItemTossEvent event) {
|
||||||
|
if (event.getPlayer() instanceof ServerPlayer player) {
|
||||||
|
if (!AuthManager.getInstance().isAuthenticated(player.m_20148_())) {
|
||||||
|
event.setCanceled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
52
instances/forge-1.20.1-survival/patches/lts-auth/build.py
Normal file
52
instances/forge-1.20.1-survival/patches/lts-auth/build.py
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
import os, shutil, subprocess, zipfile
|
||||||
|
|
||||||
|
JAR_HOST_PATH = "../../runtime/data/mods/lts_auth-1.0.1+mc1.20.1.jar"
|
||||||
|
BAK_HOST_PATH = "../../runtime/data/mods/lts_auth-1.0.1+mc1.20.1.jar.bak"
|
||||||
|
TMP_HOST_DIR = "../../runtime/data/tmp_lts_build"
|
||||||
|
TMP_CONTAINER_DIR = "/data/tmp_lts_build"
|
||||||
|
CONTAINER_NAME = "mc_forge_server"
|
||||||
|
|
||||||
|
def run_cmd(cmd):
|
||||||
|
res = subprocess.run(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
||||||
|
if res.returncode != 0:
|
||||||
|
print("Command failed:", cmd)
|
||||||
|
print("Stderr:", res.stderr)
|
||||||
|
print("Stdout:", res.stdout)
|
||||||
|
return res.returncode == 0
|
||||||
|
|
||||||
|
def cleanup_tmp():
|
||||||
|
run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} rm -rf {TMP_CONTAINER_DIR}")
|
||||||
|
|
||||||
|
def prepare_tmp():
|
||||||
|
cleanup_tmp()
|
||||||
|
run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} mkdir -p {TMP_CONTAINER_DIR}")
|
||||||
|
run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} chmod -R 777 {TMP_CONTAINER_DIR}")
|
||||||
|
|
||||||
|
if os.path.exists(JAR_HOST_PATH):
|
||||||
|
if not os.path.exists(BAK_HOST_PATH):
|
||||||
|
shutil.copyfile(JAR_HOST_PATH, BAK_HOST_PATH)
|
||||||
|
|
||||||
|
prepare_tmp()
|
||||||
|
|
||||||
|
with zipfile.ZipFile(JAR_HOST_PATH, "r") as z:
|
||||||
|
z.extractall(TMP_HOST_DIR)
|
||||||
|
|
||||||
|
run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} apt-get update >/dev/null 2>&1")
|
||||||
|
run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} apt-get install -y openjdk-17-jdk-headless >/dev/null 2>&1")
|
||||||
|
run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} chmod -R 777 {TMP_CONTAINER_DIR}")
|
||||||
|
|
||||||
|
compile_cmd = f'docker exec -i {CONTAINER_NAME} bash -c \'CP=$(find /data/libraries /data/mods -name "*.jar" | tr "\\n" ":"); javac -cp "$CP" -d {TMP_CONTAINER_DIR} {TMP_CONTAINER_DIR}/src/com/rtxbb/lts_auth/LtsAuthMod.java {TMP_CONTAINER_DIR}/src/com/rtxbb/lts_auth/command/LoginCommand.java\''
|
||||||
|
if run_cmd(compile_cmd):
|
||||||
|
print("Compilation successful! Re-zipping mod JAR...")
|
||||||
|
run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} chmod -R 777 {TMP_CONTAINER_DIR}")
|
||||||
|
run_cmd(f"docker exec -u 0 -i {CONTAINER_NAME} chmod 777 /data/mods/lts_auth-1.0.1+mc1.20.1.jar")
|
||||||
|
with zipfile.ZipFile(JAR_HOST_PATH, "w", zipfile.ZIP_DEFLATED) as zip_out:
|
||||||
|
for root, _, files in os.walk(TMP_HOST_DIR):
|
||||||
|
for file in files:
|
||||||
|
if file.endswith(".java") or "src" in root:
|
||||||
|
continue
|
||||||
|
full_path = os.path.join(root, file)
|
||||||
|
arcname = os.path.relpath(full_path, TMP_HOST_DIR)
|
||||||
|
zip_out.write(full_path, arcname)
|
||||||
|
cleanup_tmp()
|
||||||
|
print("JAR successfully updated.")
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"@type":"me.itzg.helpers.forge.ForgeManifest","timestamp":"2026-08-09T01:40:51.082107423Z","files":null,"minecraftVersion":"1.20.1","forgeVersion":"47.4.10","serverEntry":"run.sh"}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
This is created by ResourcefulLib for usage by mods.
|
||||||
|
This directory is used to store data/caches for mods.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
[]
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
[]
|
||||||
4
instances/forge-1.20.1-survival/runtime/data/eula.txt
Normal file
4
instances/forge-1.20.1-survival/runtime/data/eula.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
# Generated via Docker
|
||||||
|
# Sun 09 Aug 2026 01:40:32 AM UTC
|
||||||
|
eula=true
|
||||||
|
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "earth_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "glacio"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "glacio_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "mars"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "mars_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "mercury"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "mercury_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "moon"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "moon_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "venus"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "ad_astra",
|
||||||
|
"f_135805_": "venus_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
"journeymapEnabled": "true",
|
||||||
|
"useWorldId": "true",
|
||||||
|
"viewOnlyServerProperties": "true",
|
||||||
|
"allowMultiplayerSettings": "ALL",
|
||||||
|
"worldPlayerRadar": "ALL",
|
||||||
|
"worldPlayerRadarUpdateTime": "5",
|
||||||
|
"seeUndergroundPlayers": "ALL",
|
||||||
|
"hideOps": "false",
|
||||||
|
"hideSpectators": "false",
|
||||||
|
"allowDeathPoints": "true",
|
||||||
|
"showInGameBeacons": "true",
|
||||||
|
"allowWaypoints": "true",
|
||||||
|
"waypointTeleportOnly": "false",
|
||||||
|
"radarLateralDistance": "512",
|
||||||
|
"radarVerticalDistance": "320",
|
||||||
|
"maxAnimalsData": "128",
|
||||||
|
"maxAmbientCreaturesData": "128",
|
||||||
|
"maxMobsData": "128",
|
||||||
|
"maxPlayersData": "128",
|
||||||
|
"maxVillagersData": "128",
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "irons_spellbooks",
|
||||||
|
"f_135805_": "pocket_dimension"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "overworld"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "the_end"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"enabled": "false",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "the_nether"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "true",
|
||||||
|
"animalRadarEnabled": "true",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:atmas] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "atmas"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:atmas_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "atmas_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:callisto] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "callisto"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:callisto_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "callisto_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:charon] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "charon"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:charon_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "charon_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:diater] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "diater"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:diater_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "diater_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:dread] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "dread"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:dread_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "dread_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:dune] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "dune"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:dune_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "dune_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:dytiona] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "dytiona"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:dytiona_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "dytiona_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:eclipsa] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "eclipsa"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:eclipsa_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "eclipsa_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:enceladus] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "enceladus"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:enceladus_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "enceladus_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:europa] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "europa"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:europa_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "europa_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:evedva] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "evedva"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:evedva_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "evedva_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:fierer] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "fierer"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:fierer_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "fierer_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:flade] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "flade"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:flade_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "flade_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:galia] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "galia"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:galia_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "galia_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:ganymede] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "ganymede"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:ganymede_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "ganymede_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:glacies] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "glacies"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:glacies_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "glacies_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:iapetus] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "iapetus"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:iapetus_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "iapetus_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:io] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "io"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:io_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "io_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:jada] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "jada"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:jada_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "jada_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:mixeus] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "mixeus"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:mixeus_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "mixeus_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:molvon] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "molvon"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:molvon_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "molvon_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:pluto] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "pluto"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:pluto_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "pluto_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:reveda] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "reveda"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:reveda_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "reveda_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:ringetic] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "ringetic"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:ringetic_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "ringetic_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:sorea] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "sorea"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:sorea_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "sorea_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:soulfer] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "soulfer"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:soulfer_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "soulfer_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:titan] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "titan"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:titan_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "titan_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:vonic] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "vonic"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:vonic_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "vonic_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:vulcan] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "vulcan"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
// JourneyMap server configuration file. Modify at your own risk!
|
||||||
|
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||||
|
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||||
|
//
|
||||||
|
// Dimension ResourceKey[minecraft:dimension / planetsplus:vulcan_orbit] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||||
|
{
|
||||||
|
"enabled": "true",
|
||||||
|
"dimension": {
|
||||||
|
"f_135776_": {
|
||||||
|
"f_135804_": "minecraft",
|
||||||
|
"f_135805_": "dimension"
|
||||||
|
},
|
||||||
|
"f_135777_": {
|
||||||
|
"f_135804_": "planetsplus",
|
||||||
|
"f_135805_": "vulcan_orbit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimapEnabled": "true",
|
||||||
|
"hideCoordinates": "false",
|
||||||
|
"globalWaypointsOnly": "false",
|
||||||
|
"teleportEnabled": "false",
|
||||||
|
"crossDimTeleport": "true",
|
||||||
|
"surfaceRenderRange": "0",
|
||||||
|
"caveRenderRange": "0",
|
||||||
|
"surfaceMapping": "ALL",
|
||||||
|
"topoMapping": "ALL",
|
||||||
|
"biomeMapping": "ALL",
|
||||||
|
"caveMapping": "Disabled",
|
||||||
|
"radarEnabled": "Disabled",
|
||||||
|
"playerRadarEnabled": "false",
|
||||||
|
"playerRadarNamesEnabled": "true",
|
||||||
|
"villagerRadarEnabled": "false",
|
||||||
|
"animalRadarEnabled": "false",
|
||||||
|
"mobRadarEnabled": "false",
|
||||||
|
"configVersion": "6.0.0"
|
||||||
|
}
|
||||||
1
instances/forge-1.20.1-survival/runtime/data/ops.json
Normal file
1
instances/forge-1.20.1-survival/runtime/data/ops.json
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
[]
|
||||||
7
instances/forge-1.20.1-survival/runtime/data/run.bat
Normal file
7
instances/forge-1.20.1-survival/runtime/data/run.bat
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
@echo off
|
||||||
|
REM Forge requires a configured set of both JVM and program arguments.
|
||||||
|
REM Add custom JVM arguments to the user_jvm_args.txt
|
||||||
|
REM Add custom program arguments {such as nogui} to this file in the next line before the %* or
|
||||||
|
REM pass them to this script directly
|
||||||
|
java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.20.1-47.4.10/win_args.txt %*
|
||||||
|
pause
|
||||||
6
instances/forge-1.20.1-survival/runtime/data/run.sh
Executable file
6
instances/forge-1.20.1-survival/runtime/data/run.sh
Executable file
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
# Forge requires a configured set of both JVM and program arguments.
|
||||||
|
# Add custom JVM arguments to the user_jvm_args.txt
|
||||||
|
# Add custom program arguments {such as nogui} to this file in the next line before the "$@" or
|
||||||
|
# pass them to this script directly
|
||||||
|
java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.20.1-47.4.10/unix_args.txt "$@"
|
||||||
|
|
@ -0,0 +1,58 @@
|
||||||
|
#Minecraft server properties
|
||||||
|
#Mon Aug 10 17:08:14 UTC 2026
|
||||||
|
allow-flight=false
|
||||||
|
allow-nether=true
|
||||||
|
broadcast-console-to-ops=true
|
||||||
|
broadcast-rcon-to-ops=true
|
||||||
|
difficulty=hard
|
||||||
|
enable-command-block=false
|
||||||
|
enable-jmx-monitoring=false
|
||||||
|
enable-query=false
|
||||||
|
enable-rcon=true
|
||||||
|
enable-status=true
|
||||||
|
enforce-secure-profile=true
|
||||||
|
enforce-whitelist=false
|
||||||
|
entity-broadcast-range-percentage=100
|
||||||
|
force-gamemode=false
|
||||||
|
function-permission-level=2
|
||||||
|
gamemode=survival
|
||||||
|
generate-structures=true
|
||||||
|
generator-settings={}
|
||||||
|
hardcore=false
|
||||||
|
hide-online-players=false
|
||||||
|
initial-disabled-packs=
|
||||||
|
initial-enabled-packs=vanilla
|
||||||
|
level-name=world
|
||||||
|
level-seed=
|
||||||
|
level-type=minecraft\:normal
|
||||||
|
max-chained-neighbor-updates=1000000
|
||||||
|
max-players=15
|
||||||
|
max-tick-time=60000
|
||||||
|
max-world-size=29999984
|
||||||
|
motd=MC SotoHome\!
|
||||||
|
network-compression-threshold=256
|
||||||
|
online-mode=false
|
||||||
|
op-permission-level=4
|
||||||
|
player-idle-timeout=0
|
||||||
|
prevent-proxy-connections=false
|
||||||
|
pvp=true
|
||||||
|
query.port=25565
|
||||||
|
rate-limit=0
|
||||||
|
rcon.password=e3f7fc549fa0e74d29de77bc
|
||||||
|
rcon.port=25575
|
||||||
|
require-resource-pack=false
|
||||||
|
resource-pack=
|
||||||
|
resource-pack-prompt=
|
||||||
|
resource-pack-sha1=
|
||||||
|
server-ip=
|
||||||
|
server-port=25565
|
||||||
|
simulation-distance=6
|
||||||
|
spawn-animals=true
|
||||||
|
spawn-monsters=true
|
||||||
|
spawn-npcs=true
|
||||||
|
spawn-protection=16
|
||||||
|
sync-chunk-writes=false
|
||||||
|
text-filtering-config=
|
||||||
|
use-native-transport=true
|
||||||
|
view-distance=8
|
||||||
|
white-list=false
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
-Xmx12G -Xms12G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=15 -XX:InitiatingHeapOccupancyPercent=45 -XX:G1MixedGCCountTarget=4 -XX:G1HeapWastePercent=5 -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=1 -XX:+DisableExplicitGC -XX:+AlwaysPreTouch
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
[]
|
||||||
44
instances/forge-1.20.1-survival/runtime/docker-compose.yml
Normal file
44
instances/forge-1.20.1-survival/runtime/docker-compose.yml
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
services:
|
||||||
|
mc:
|
||||||
|
image: itzg/minecraft-server:java17
|
||||||
|
container_name: mc_forge_server
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "25565:25565"
|
||||||
|
- "24454:24454/udp"
|
||||||
|
environment:
|
||||||
|
EULA: "TRUE"
|
||||||
|
TYPE: "FORGE"
|
||||||
|
VERSION: "1.20.1"
|
||||||
|
MEMORY: "12G"
|
||||||
|
|
||||||
|
# Server Properties Mapping
|
||||||
|
VIEW_DISTANCE: "8"
|
||||||
|
SIMULATION_DISTANCE: "6"
|
||||||
|
NETWORK_COMPRESSION_THRESHOLD: "256"
|
||||||
|
MAX_TICK_TIME: "60000"
|
||||||
|
SYNC_CHUNK_WRITES: "FALSE"
|
||||||
|
ENABLE_STATUS: "TRUE"
|
||||||
|
MOTD: "MC SotoHome!"
|
||||||
|
MAX_PLAYERS: "15"
|
||||||
|
DIFFICULTY: "hard"
|
||||||
|
ONLINE_MODE: "FALSE"
|
||||||
|
|
||||||
|
# JVM Garbage Collection & ARM64 Optimization Flags
|
||||||
|
JVM_OPTS: >-
|
||||||
|
-XX:+UnlockExperimentalVMOptions
|
||||||
|
-XX:+UseG1GC
|
||||||
|
-XX:MaxGCPauseMillis=50
|
||||||
|
-XX:G1HeapRegionSize=8M
|
||||||
|
-XX:G1ReservePercent=15
|
||||||
|
-XX:InitiatingHeapOccupancyPercent=45
|
||||||
|
-XX:G1MixedGCCountTarget=4
|
||||||
|
-XX:G1HeapWastePercent=5
|
||||||
|
-XX:G1NewSizePercent=30
|
||||||
|
-XX:G1MaxNewSizePercent=40
|
||||||
|
-XX:SurvivorRatio=8
|
||||||
|
-XX:MaxTenuringThreshold=1
|
||||||
|
-XX:+DisableExplicitGC
|
||||||
|
-XX:+AlwaysPreTouch
|
||||||
|
volumes:
|
||||||
|
- ./data:/data
|
||||||
Loading…
Reference in a new issue