Unstable Ban

โญ โ€” (5 endorsements) ๐Ÿ“ฅ 908 downloads ๐Ÿ“Œ v1.2.1 ๐Ÿ“… 2/10/2026
๐ŸŸก Updated this year

By Blaulix ยท adventure

โฌ‡ Download Mod Source: Modrinth โ†— ๐Ÿ“… Updated: 3/24/2026 ๐Ÿ“… Created: 2/10/2026

๐Ÿ” Analysis

  • ๐Ÿ‘ 0.6% endorsement rate
  • ๐Ÿ† #39 of 351 adventure mods in this game by downloads

๐Ÿ“‹ About This Mod

# ๐Ÿ’€ Unstable Ban โ€” Minecraft Plugin **Unstable Ban** brings **true hardcore vibes** to your Minecraft server by turning **player deaths into bans**. Every life counts โ€” **one mistake and you're out**. It functions just like the **banning system on Unstable SMP**, with a **few additional features**, but it's **fully configurable** to behave *exactly* like **Unstable SMP** if desired. --- ## โšก Core Idea Death is no longer just a setback. * You don't respawn * You don't keep playing * You get **banned** Whether temporary or permanent โ€” **death finally means something**. --- ## ๐Ÿ’ฌ What Happens When a Player Dies * The plugin **detects the death instantly** * A **ban command is sent to LibertyBans** * The player is **automatically banned** * A **Wither spawn sound** plays * Nearby players **see the death message and hear the sound** (configurable radius) * The player sees a **custom ban reason** (killer or natural cause) ```yaml # The radius in which the death message/sound will be seen/heard when someone dies. 1 = 1 Block death-radius: 1000 # Should the plugin send a death message in the chat and/or play a sound when someone dies ONLY IN THE ASSIGNED RADIUS? death-message: true death-sound: true # Only use sounds that are listed in https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html death-sound-type: ENTITY_WITHER_SPAWN # The reason the player should see if he dies # %player% = the name of the player who died # %killer% = the name of the player who killed the player (if there is one) # %banCount% = the amount of bans the player has after being killed ban-reason: "You were killed by %killer%!" # when there is no killer, the player should see this message ban-reason-natural-causes: "You died!" ``` No delays. No loopholes. Just **pure consequences**. --- ## โณ Ban Progression System Unstable Ban supports **escalating ban durations**, just like on **Unstable SMP**. ```yaml # m = minutes, h = hours, d = days, mo = months # for permanent bans, delete all durations except the first one and set it to "perm" ban-durations: - "10m" - "1h" - "6h" - "24h" - "7d" # Should a players bans be reset after the last/longest ban time ban-durations-last-reset: true ``` Each death increases the punishment. After reaching the longest duration, bans can automatically reset (optional). Survive longer โ€” or **pay the price**. --- ## ๐Ÿ”„ Earn Your Way Back In If you're using **temporary bans**, players can **reduce their ban counter** in two ways. ### โฑ๏ธ By Spending Time on the Server ```yaml # Should someone lose one ban after a certain time period? lose-ban-after-time: true # s = seconds, m = minutes, h = hours, d = days lose-ban-after-duration: "2h" # use -1 to remove all bans after the time period lose-ban-amount: 1 ``` If a player is on ban level 2 and the time passes, they'll drop back to ban level 1 โ€” meaning **shorter bans next time**. When they join while this system is active, a **boss bar countdown** shows the remaining time. ```yaml # the color of the countdown boss bar countdown-bossbar-color: "RED" # The title on top of the boss bar # Use %time% to show the remaining time until the next ban is removed countdown-bossbar-title: "ยงcYou will lose one ban in %time%" ``` --- ### โš”๏ธ By Killing Other Players High risk. High reward. ```yaml # Should someone lose ban(s) after getting a kill? lose-ban-after-kill: true # use -1 to remove all bans after the time period lose-ban-amount-on-kill: -1 ``` One kill can **wipe all previous bans** โ€” if you're brave enough. --- ## ๐Ÿง  Why Unstable Ban Is Different * **Death = Consequence** * **Escalating punishments** * **Redemption through skill or patience** * **Public deaths with sound & messages** * **Full logging & moderation transparency** * **Fully configurable hardcore experience** It's not just a plugin โ€” it's **a ruleset for tension**. --- ### ๐Ÿ“ข Join & Leave Radius Control Join and leave messages can also be limited to a specific radius. ```yaml # Should leave messages only be sent to players in a certain radius around the player who left? leave-msg-radius-enabled: true leave-msg-radius: 1000 # Should join messages only be sent to players in a certain radius around the player who joined? join-msg-radius-enabled: true join-msg-radius: 1000 ``` --- ## ๐ŸŽฎ Perfect For * Hardcore SMPs * Competitive survival servers * Events & challenges * Content creators * Servers that want **real stakes** Every fight matters. Every heart matters. Every decision matters. --- ## ๐Ÿ“‹ Commands โ€” Unstable Ban | Command | Function | Permission | | --------------------------------------- | --------------------------------- | --------------------- | | `/unstableban bans` | Check your current ban count | Player | | `/ub bans` | Alias for `/unstableban bans` | Player | | `/unstableban togg

# ๐Ÿ’€ Unstable Ban โ€” Minecraft Plugin

Unstable Ban brings true hardcore vibes to your Minecraft server by turning player deaths into bans. Every life counts โ€” one mistake and you're out.

It functions just like the banning system on Unstable SMP, with a few additional features, but it's fully configurable to behave exactly like Unstable SMP if desired.

## โšก Core Idea

Death is no longer just a setback.

You don't respawn You don't keep playing You get banned

Whether temporary or permanent โ€” death finally means something.

## ๐Ÿ’ฌ What Happens When a Player Dies

The plugin detects the death instantly A ban command is sent to LibertyBans The player is automatically banned A Wither spawn sound plays Nearby players see the death message and hear the sound (configurable radius) The player sees a custom ban reason (killer or natural cause)

```yaml # The radius in which the death message/sound will be seen/heard when someone dies. 1 = 1 Block death-radius: 1000

# Should the plugin send a death message in the chat and/or play a sound when someone dies ONLY IN THE ASSIGNED RADIUS? death-message: true death-sound: true

# Only use sounds that are listed in https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html death-sound-type: ENTITY_WITHER_SPAWN

# The reason the player should see if he dies # %player% = the name of the player who died # %killer% = the name of the player who killed the player (if there is one) # %banCount% = the amount of bans the player has after being killed ban-reason: "You were killed by %killer%!"

# when there is no killer, the player should see this message ban-reason-natural-causes: "You died!" ```

No delays. No loopholes. Just pure consequences.

## โณ Ban Progression System

Unstable Ban supports escalating ban durations, just like on Unstable SMP.

```yaml # m = minutes, h = hours, d = days, mo = months # for permanent bans, delete all durations except the first one and set it to "perm" ban-durations: - "10m" - "1h" - "6h" - "24h" - "7d"

# Should a players bans be reset after the last/longest ban time ban-durations-last-reset: true ```

Each death increases the punishment. After reaching the longest duration, bans can automatically reset (optional).

Survive longer โ€” or pay the price.

## ๐Ÿ”„ Earn Your Way Back In

If you're using temporary bans, players can reduce their ban counter in two ways.

### โฑ๏ธ By Spending Time on the Server

```yaml # Should someone lose one ban after a certain time period? lose-ban-after-time: true

# s = seconds, m = minutes, h = hours, d = days lose-ban-after-duration: "2h"

# use -1 to remove all bans after the time period lose-ban-amount: 1 ```

If a player is on ban level 2 and the time passes, they'll drop back to ban level 1 โ€” meaning shorter bans next time.

When they join while this system is active, a boss bar countdown shows the remaining time.

```yaml # the color of the countdown boss bar countdown-bossbar-color: "RED"

# The title on top of the boss bar # Use %time% to show the remaining time until the next ban is removed countdown-bossbar-title: "ยงcYou will lose one ban in %time%" ```

### โš”๏ธ By Killing Other Players

High risk. High reward.

```yaml # Should someone lose ban(s) after getting a kill? lose-ban-after-kill: true

# use -1 to remove all bans after the time period lose-ban-amount-on-kill: -1 ```

One kill can wipe all previous bans โ€” if you're brave enough.

## ๐Ÿง  Why Unstable Ban Is Different

Death = Consequence Escalating punishments Redemption through skill or patience Public deaths with sound & messages Full logging & moderation transparency Fully configurable hardcore experience

It's not just a plugin โ€” it's a ruleset for tension.

### ๐Ÿ“ข Join & Leave Radius Control

Join and leave messages can also be limited to a specific radius.

```yaml # Should leave messages only be sent to players in a certain radius around the player who left? leave-msg-radius-enabled: true leave-msg-radius: 1000

# Should join messages only be sent to players in a certain radius around the player who joined? join-msg-radius-enabled: true join-msg-radius: 1000 ```

## ๐ŸŽฎ Perfect For

Hardcore SMPs Competitive survival servers Events & challenges Content creators Servers that want real stakes

Every fight matters. Every heart matters. Every decision matters.

## ๐Ÿ“‹ Commands โ€” Unstable Ban

| Command | Function | Permission | | --------------------------------------- | --------------------------------- | --------------------- | | `/unstableban bans` | Check your current ban count | Player | | `/ub bans` | Alias for `/unstableban bans` | Player | | `/unstableban togg

๐Ÿค– AI-enhanced โ€” based on mod data

๐Ÿ“Š Mod Details

Game
Minecraft Plugins
Author
Blaulix
Version
1.2.1
Downloads
908
Endorsements
5
Category
adventure
Created
2/10/2026
Updated
3/24/2026
Game Versions
1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
Tags
adventure, game-mechanics, management

๐Ÿ”ง How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

๐Ÿ“– Full step-by-step install guide for Minecraft Plugins โ†’

Visit the official mod page for specific installation instructions for this mod.

๐ŸŽฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

โ“ Frequently Asked Questions

Which Minecraft Plugins versions does Unstable Ban support?

The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.

What is the latest version of Unstable Ban?

Version 1.2.1, published 2026-03-24 with 908 downloads recorded at the source.

Keep browsing โ€” more Minecraft Plugins mods await

๐Ÿ“‹ All Minecraft Plugins Mods ๐Ÿ† Top 25 ๐Ÿ“‚ More adventure ๐Ÿ‘ค More by Blaulix ๐Ÿ”Ž Similar Mods ๐ŸŒ Best adventure (All Games) ๐Ÿ”€ Check Compatibility โš–๏ธ Compare Mods ๐Ÿ†• New Mods