IceLegends SMP
A vanilla-first Romanian Minecraft SMP built for clean 3–4 month seasons.
The Problem
Running a community SMP means balancing plugin depth against vanilla feel, managing a world-reset cycle, and keeping operations simple enough for a solo admin. IceLegends SMP solves this with 11 carefully chosen plugins, strict feature gating per a "vanilla-first" principle, and fully automated backups and world resets.
My Role
Designed, configured, and deployed solo — server architecture, 11-plugin selection and configuration, LuckPerms permission model, economy and nation design, Docker infrastructure, and Cloudflare Tunnel ingress for Dynmap.
Highlights
- PaperMC 1.21 on Docker with a hard 11-plugin cap — every plugin is justified and none are redundant
- Towny nations with seasonal quests (Quests + Citizens NPCs) and a single manually-spawned MythicMobs boss per season
- AureliumSkills passive bonuses only — active abilities disabled to preserve vanilla combat (P-01)
- DiscordSRV bridge logs every death, join, and chat event to dedicated Discord channels in real time
- Daily automated backups with 7-day retention; resource world resets every Monday at 05:00 via cron
Stack
Constraints
- Solo admin — every operation must complete in under 10 minutes (P-02).
- Vanilla-first (P-01): if any plugin disappeared tomorrow, the game must continue unchanged.
- 11-plugin hard cap — every addition must displace something or prove unique, irreplaceable value.
System Architecture
Key Trade-offs
The decisions worth defending — what I chose, what I turned down, and why.
Plugin count cap
Chose
Hard cap at 11 plugins
Rejected
Unlimited plugin stack
Each plugin is a maintenance surface and a potential conflict point. The cap forces prioritisation and keeps the dependency graph legible for a solo admin.
Public ingress for Dynmap
Chose
Cloudflare Tunnel (no open ports)
Rejected
Expose :8123 directly via UFW
No origin IP exposure, free DDoS protection, and zero firewall rule maintenance — the same pattern used by the IceLegends portfolio site.
AureliumSkills scope
Chose
Passive bonuses only, active abilities disabled
Rejected
Full AureliumSkills feature set including active combat abilities
Active abilities alter vanilla combat — a direct violation of P-01. Passive bonuses reward playtime additively without changing the combat model.
Season lifecycle
Chose
Full world reset every 3–4 months
Rejected
Incremental map expansion with no reset
Resets keep the world fresh, prevent terrain exhaustion, and give every new player an equal start — critical for community health in a small SMP.
What I'd Do Differently
An honest retrospective — the stuff I'd change with more time, more users, or a second pass.
- 1Add a staging compose stack so plugin updates can be tested before touching the live season — one bad update cost several hours of rollback work.
- 2Move backup storage off-site from day one; local-only archives are a single hardware failure away from a full season loss.
- 3Wire Dynmap as a named Docker service rather than relying on the host port, so the Cloudflare Tunnel config survives container IP reassignment on restart.
Technical Deep-Dive
Architecture, specifications, and implementation details.
09 — Spawn Design
"Layout, NPC placement, warps, information zones
#Philosophy
Spawn is a functional hub, not a theme park. Every element has a purpose. A new player can orient themselves in under 2 minutes.
#Layout Map
┌─────────────────────┐
│ ARRIVAL ZONE │
│ Welcome hologram │
│ Server name + rules │
└──────────┬──────────┘
│
┌────────────────┼────────────────┐
│ │ │
▼ ▼ ▼
┌──────────────┐ ┌─────────────────┐ ┌──────────────┐
│ NPC ZONE │ │ INFO BOARDS │ │ WARP SIGNS │
│ Bătrânul │ │ Rules │ │ /warp res. │
│ Negustorul │ │ Discord link │ │ /warp arena │
│ (quest/shop)│ │ Dynmap link │ │ /warp pvp │
└──────────────┘ └─────────────────┘ └──────────────┘
│
▼
┌─────────────────────┐
│ LEADERBOARD HOLO │
│ Top 5 richest │
│ Top 5 fighters │
│ (DecentHolograms) │
└─────────────────────┘
#NPC Setup Commands
# === Bătrânul (Quest Giver) ===
/npc create Batranul --type VILLAGER
/npc select
/npc name &6&lBătrânul
/npc trait questnpc
# Then assign Q1 quest via Quests plugin GUI
# === Negustorul (Shop) ===
/npc create Negustorul --type VILLAGER
/npc select
/npc name &e&lNegustorul
/npc cmd add -p /shop
# Lock NPCs in place (prevent pushing)
/npc select
/npc toggle invulnerable
/npc toggle controllable
#Warp Setup
# Run while standing at each destination:
/mvwarp create resurse # in resource world
/mvwarp create arena # at boss arena
/mvwarp create pvp # at PvP zone (if exists)
# Players use:
# /warp resurse
# /warp arena
# /warp pvp
#Hologram Setup (DecentHolograms)
# Welcome hologram at arrival
/dh create welcome
/dh addline welcome &2&l⚔ SMP Românesc
/dh addline welcome &7Supraviețuiește. Construiește. Cucerește.
/dh addline welcome &8Discord: discord.gg/serverul-tau
# Leaderboard hologram
/dh create leaderboard
/dh addline leaderboard &6&l◆ Top Jucători ◆
/dh addline leaderboard &e1. {vault_top_balance_1_name}: {vault_top_balance_1} ⛃
/dh addline leaderboard &e2. {vault_top_balance_2_name}: {vault_top_balance_2} ⛃
/dh addline leaderboard &e3. {vault_top_balance_3_name}: {vault_top_balance_3} ⛃
#Information Signs
Each sign is a vanilla sign with the following info:
| Sign | Content |
|---|---|
| Rules | 1. Fii respectuos / 2. Nu grefa / 3. Nu cheat |
| Discord | discord.gg/serverultau |
| Map | map.serverultau.ro |
| Warp guide | /warp resurse • /warp arena |
#Spawn Protection
# server.properties
spawn-protection=16 # 16-block radius around world spawn (0,0) is protected
#EssentialsX Spawn Config
# plugin-configs/essentialsx/config.yml
spawn-on-join: none # don't force players to spawn every login
# Players return to their bed / last position on login
#Related Documents
- NPC quests content →
06_quests_storyline.md - Economy (shop NPC) →
03_economy_design.md - Permissions (who can edit spawn) →
11_permissions_staff.md