minecraft-server/live-server/plugins/Homestead/levels.yml
s8n-ru 0dad38e02e Initial commit: racked.ru Minecraft server config snapshot
Captures live config state of nullstone Purpur 1.21.11 server:
- docker-compose.yml (itzg/minecraft-server image, MODRINTH_PROJECTS + PLUGINS lists)
- All plugin configs under live-server/plugins/ (no DBs, no jars, no world data)
- Server core: bukkit.yml, spigot.yml, purpur.yml, paper-global.yml, paper-world-defaults.yml, server.properties

Excluded via .gitignore:
- World data (world/, world_nether/, world_the_end/, auth_limbo/)
- Sensitive: AuthMe DB (password hashes), Lands DB, CoreProtect DB, Essentials userdata
- Jars (auto-fetched), logs, caches, .paper-remapped
2026-04-30 18:33:38 +01:00

62 lines
1.5 KiB
YAML

# Region Leveling System
# Reward players for killing mobs inside their region
# XP gained -> region levels up -> unlocks bonuses
levels:
# Enable region leveling
enabled: true
# XP per entity type (kill must happen IN your region, except Ender Dragon)
# Format: ENTITY_NAME: [ min_xp, max_xp ]
on-kill-entity:
ENDER_DRAGON: [ 1000, 3000 ]
WARDEN: [ 500, 1000 ]
WITHER: [ 200, 500 ]
WITHER_SKELETON: [ 50, 100 ]
GHAST: [ 25, 50 ]
ZOMBIE: [ 10, 20 ]
SKELETON: [ 10, 20 ]
HUSK: [ 10, 20 ]
PIG: [ 10, 20 ]
SHEEP: [ 10, 20 ]
COW: [ 10, 20 ]
CHICKEN: [ 10, 20 ]
# Level-Based Rewards (keep levels and rewards in ASCENDING order)
# Rewards stack.
rewards:
5: # Level 5; Rewards: 1 Chunk, 5% Upkeep Reduction
chunks: 1
members: 0
subareas: 0
upkeep-reduction: 5
10: # Level 10; Rewards: 2 Chunks, 1 Trusted player, 5% Upkeep Reduction
chunks: 2
members: 1
subareas: 0
upkeep-reduction: 5
15: # Level 15; Rewards: 4 Chunks, 2 Trusted players, 1 Sub-Areas, 10% Upkeep Reduction
chunks: 4
members: 2
subareas: 1
upkeep-reduction: 10
20: # ...
chunks: 4
members: 2
subareas: 1
upkeep-reduction: 15
30:
chunks: 4
members: 2
subareas: 1
upkeep-reduction: 30
50:
chunks: 8
members: 6
subareas: 4
upkeep-reduction: 50