90 lines
3.3 KiB
Markdown
90 lines
3.3 KiB
Markdown
# Mod Configurations Matrix & Schemas
|
|
|
|
## Summary Matrix
|
|
|
|
| Mod | Config File Path | Key Setting | Value | Purpose |
|
|
| :--- | :--- | :--- | :--- | :--- |
|
|
| **LTS Auth** | `runtime/data/config/lts_auth/messages.yml` | `timeout_kick` | `Authentication time has expired!` | Ingame auth, invulnerability lock & auto-kick |
|
|
| **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` | `Lock Generation Chance` | `1.0` | Controls world generation probability of locked containers |
|
|
| **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 |
|
|
| **Distant Horizons** | `runtime/data/config/DistantHorizons.toml` | `distantGeneratorMode` | `"FULL"` | Pregenerate both vanilla chunks & LODs natively (`dh pregen start`) |
|
|
|
|
---
|
|
|
|
## 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]
|
|
```
|
|
|
|
### 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
|
|
|
|
# Disable / enable any items here (disables their recipes)
|
|
enabledItems = [
|
|
"sophisticatedbackpacks:stack_upgrade_tier_3|false",
|
|
"sophisticatedbackpacks:stack_upgrade_tier_4|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"] }
|
|
}
|
|
]
|
|
}
|
|
}
|
|
```
|
|
|
|
### 6. Distant Horizons (`runtime/data/config/DistantHorizons.toml`)
|
|
```toml
|
|
[client.advanced.worldGenerator]
|
|
# Set to FULL to generate both vanilla chunks and LODs during server pregen (/dh pregen start)
|
|
distantGeneratorMode = "FULL"
|
|
```
|