Minecraft plugins for Paper 1.21.1+

Land claiming, chest shops, PvP rankings. Familiar commands, same defaults, fixes out the same day.

Land creation
GUI menus
Capture points
Resource nodes
Warp system
🐝

About

Pea Studios started in 2026 because every land claiming plugin was either abandoned, overpriced, or needed 20 config files to set up. So I built the land plugin (originally PeaTowny, renamed to PeaNations once the nation and war side basically became the whole identity) as an alternative to Towny and Lands, and it kind of grew from there into a small plugin studio.

All the plugins use commands you already know from Towny and Lands, so theres basically no learning curve. Configs have same defaults, you can just drop the jar in without touching anything. If something breaks, hop in the Discord and I'll usually have a fix out same day.

I'm not trying to compete with massive plugin teams. I just want to make a few focused plugins that are actually good, keep them updated, and not disappear after two months like half the stuff on SpigotMC.

tldr: uses /t and /land commands you already know. drop the jar in, it works out of the box. if it breaks hit me up on Discord.

Plugins

Check out our current projects.

Released

PeaNations (ex-PeaTowny)

Land claiming for Paper 1.21.1+. Uses the same commands as Towny and Lands so switching is like 5 minutes. Claiming, roles, economy, nations, wars — all in one plugin.

Free / Premium $14.99
Land Claiming — Chunk-based with selection tool, auto-claim, 10 chunks + 5 per member
Roles & Permissions — 4 built-in + custom roles, 61 permission flags
Economy — Vault integration, land treasury, per-chunk costs
Wars — Kill-point wars with live scoreboard and progress bars
Nations & Relations — Alliances, enemies, diplomacy between lands
Beacon Warps — Public warps with paginated GUI and search
Map Support — Dynmap and BlueMap integration
Towny Migration — Built-in importer, switch without losing data
Protection — Explosions, fire, mobs, PvP, pistons, liquids
Land Chat — Private channel for land members

Premium tier

Everything above, plus the management and customisation stuff:

Land levels - 5 tiers with bonus chunks at each
Upkeep - per-chunk cost, auto-unclaims if unpaid
Nation taxes from member lands
Fly in your own territory
Rent and sell land to players
Per-land item storage
Sub-areas with separate role settings
Discord addon (PeaTowny-Discord)
Auto-delete inactive lands
MySQL database support
GUI and message customization
Addon API for developers
Released

PeaShops

Sign-based chest shops for Paper 1.21.1+. GUI walks you through item + price if you dont want to memorize a format, dynamic pricing on stock, bulk tier discounts, timed sales, granular trust perms, and trades lock per shop so dupes arent really a path.

Free no premium
Sign Creation — GUI item picker + anvil price prompt, or just type the format yourself
Dynamic Pricing — Per-shop opt-in, curve adjusts to stock with configurable bounds
Bulk Tiers /shop tier <minQty> <pricePerUnit>, stacks as many tiers as you want
Timed Sales /shop sale <hours> <%off>, auto-reverts when the timer hits 0
Shop Finder /shop find <item>, top 10 sorted by distance
Info GUI — Shift+right-click any sign, shows stock / price / active sale / owner description
Granular Trust — 5 perms per trusted player (edit, restock, withdraw, delete, view_analytics)
Admin Shops — Infinite stock, configurable per-transaction payout cap
Dupe-proof Trades — Per-shop reentrant lock, inventory + balance snapshot, full rollback on any failure
Anti-grief — Adjacent hopper/dropper placement blocked on non-owned shops, sign break is owner-only
Creating a shop
Creating a shop
Info GUI + buying
Info GUI + buying
/shop find GUI
/shop find
Buying with a sale active
Active sale
Buying with dynamic pricing on
Dynamic pricing
Released

Pealo

ELO PvP rankings. 10 ranks from Copper to Apex, kill points you can spend, anti-farm so people cant boost each other, and assist tracking.

$12.99 one-time
Copper 1000+ Bronze 1200+ Iron 1400+ Steel 1600+ Gold 1800+ Platinum 2000+ Diamond 2300+ Master 2600+ Grandmaster 3000+ Apex 3500+
Dynamic ELO — Scales with opponent strength, 1-40 per kill
Kill Points — Earn from kills, spend in admin-configurable shop
Anti-Farm — Same-player kills stop rewarding after 2 (180s window)
Assists — 20%+ damage = assist credit, 0.5x ELO and KP
Leaderboard — Top 100 with pagination, podium for top 3
KP Shop — Buy cosmetics or run commands with Kill Points

Developer API

PeaNations API Addon System

Addons go in plugins/PeaTowny/addons/ (the internal plugin id is still PeaTowny so your existing data folder keeps working) and load automatically.

// grab the api
PeaTownyAPI api = PeaTownyAPI.getInstance();

// land queries
Land land = api.getLandAt(player.getLocation());
List<Land> lands = api.getLandsByOwner(playerId);

// permissions
boolean canBreak = api.hasPermission(landId, playerId, RoleFlag.BLOCK_BREAK);

// economy
api.deposit(landId, 500.0);
double balance = api.getBalance(landId);

// nations and wars
Nation nation = api.getNation(nationId);
List<War> wars = api.getActiveWars();
PlaceholderAPI - Server Placeholders
%peatowny_total_lands%Total land count
%peatowny_total_chunks%Total claimed chunks
%peatowny_total_nations%Total nations
%peatowny_total_wars%Active wars
%peatowny_total_players%Total registered players
PlaceholderAPI - Player Placeholders
%peatowny_player_land_count%Lands owned
%peatowny_player_member_of_count%Lands member of
%peatowny_player_at_war%Is at war
%peatowny_player_in_combat%In combat tag
%peatowny_player_nation%Nation name
PlaceholderAPI - Land Placeholders
%peatowny_land_name%Land name
%peatowny_land_owner%Owner name
%peatowny_land_members%Member count
%peatowny_land_balance_formatted%Treasury balance
%peatowny_land_level%Land level
%peatowny_land_resource%Resource type
%peatowny_land_at_war%War status
PlaceholderAPI - Nation Placeholders
%peatowny_nation_name%Nation name
%peatowny_nation_capital%Capital land
%peatowny_nation_land_count%Lands in nation
%peatowny_nation_balance_formatted%Nation treasury
PlaceholderAPI - War Placeholders
%peatowny_war_active%Has active war
%peatowny_war_attacker%Attacker name
%peatowny_war_defender%Defender name
%peatowny_war_remaining%Time remaining
PlaceholderAPI - Leaderboard & Relations
%peatowny_top_land_balance_1_name%Richest land #1
%peatowny_top_land_balance_2_name%Richest land #2
%peatowny_top_land_balance_3_name%Richest land #3
%peatowny_top_land_balance_4_name%Richest land #4
%peatowny_top_land_balance_5_name%Richest land #5
%peatowny_rel_relation%Relation with target
%peatowny_rel_is_ally%Is allied
%peatowny_rel_enemy_count%Enemy count

Pealo PlaceholderAPI

For scoreboards, tab lists, and other plugins.

%pealo_elo%Current ELO
%pealo_rank%Rank name
%pealo_kills%Total kills
%pealo_deaths%Total deaths
%pealo_kdr%K/D ratio
%pealo_kills_points%Kill Points
// player
/elo stats [player]   - view stats
/elo top              - leaderboard
/elo search <name>    - find a player
/elo shop             - cosmetic shop
/elo admin            - admin panel

Pricing

Pay once, keep it. No subscriptions.

PeaNations Free

$0
not a trial, actually the full thing
  • Land claiming & chunks
  • 61 permission flags
  • Custom roles
  • Vault economy
  • Kill-point wars
  • Nations & relations
  • Beacon warps
  • Towny migration
  • Dynmap / BlueMap
  • 60+ PAPI placeholders
Download

PeaNations Premium

$14.99 one-time
Everything in Free, plus:
  • 5-tier land levels
  • Upkeep & nation taxes
  • Fly in your territory
  • Rent & sell land
  • Sub-areas
  • Land storage
  • Auto-delete inactive lands
  • Discord addon support
  • MySQL support
  • GUI & message customization
  • Addon API
Buy on Discord

Custom Plugins

Need something built for your server? I do commissions. Pricing is by quote — open a ticket with what you want and I'll get back to you.

Open a Ticket

Community

Discord

Support, purchases, updates, bug reports, feature requests — basically where everything happens.

Join Discord

BuiltByBit

Download the free edition and leave a review if you feel like it. Reviews genuinely help with visibility on the marketplace.

Store Page