TaxPro

โญ โ€” (0 endorsements) ๐Ÿ“ฅ 53 downloads ๐Ÿ“Œ v1.0.0 ๐Ÿ“… 5/6/2026
๐ŸŸก Updated this year

By AbhinavSanthosh ยท bukkit

โฌ‡ Download Mod Source: Modrinth โ†— ๐Ÿ“… Updated: 4/29/2026 ๐Ÿ“… Created: 5/6/2026

๐Ÿ” Analysis

  • ๐Ÿ† #578 of 1080 bukkit mods in this game by downloads

๐Ÿ“‹ About This Mod

# ๐Ÿฆ TaxPro **Supported Java Version:** Java 17+ **Supported Minecraft Versions:** 1.13 - 1.20+ A high-performance, completely lag-free economy and taxation plugin for Spigot/Paper servers. Built to handle massive player bases with seamless GriefPrevention and Vault integration. --- ## ๐Ÿ“‘ Table of Contents 1. (#-features) 2. (#-commands) 3. (#-permissions) 4. (#๏ธ-placeholders) 5. (#๏ธ-default-configuration-configyml) 6. (#-default-messages-messagesyml) 7. (#-installation) 8. (#๏ธ-building) --- ## โœจ Features - **๐Ÿ“ˆ Progressive Wealth Tax**: Automatically runs margin-based wealth tax deductions based on configured tiered brackets. - **๐Ÿก Land Tax**: Taxes players for their active or unused GriefPrevention claim blocks. Includes a sophisticated strike-system that automatically unclaims abandoned properties. - **๐Ÿ’€ Death Penalties**: Highly configurable wallet percentage deductions with world exemptions (e.g., bypass in PvP Arenas). - **๐Ÿ’ธ Command Fees**: Charge players in-game money for running commands. Supports custom grouped fees and individual granular overrides with dynamic bypass permissions. - **โฑ๏ธ Dynamic Data Persistence**: All timers use persistent Unix timestamps. Even if your server crashes or goes offline for a week, it perfectly tracks exactly when the next tax is due! - **โšก Asynchronous Optimization**: Implements background batch processing. TaxPro safely executes heavy calculations on separate threads, guaranteeing it will never cause a server TPS drop. --- ## ๐Ÿ’ป Commands | Command | Description | Permission Required | |---------|-------------|---------------------| | `/tax help` | Shows the plugin help menu | `tax.admin` | | `/tax stats` | View your personal projected taxes, due dates, and strikes | `tax.command.stats` | | `/tax forcewealth` | Force the wealth tax cycle and reset the timer | `tax.admin` | | `/tax forceland` | Force the daily land tax cycle and reset the timer | `tax.admin` | | `/tax reload` | Reloads all configurations and messages | `tax.admin` | --- ## ๐Ÿ” Permissions | Permission Node | Description | Default | |-----------------|-------------|---------| | `tax.admin` | Access to administrative commands | OP | | `tax.command.stats` | Access to view personal stats | True | | `tax.exempt.wealth` | Exempts the user from the wealth tax | False | | `tax.exempt.land` | Exempts the user from the land tax | False | | `tax.exempt.deathpenalty` | Exempts the user from dropping money on death | False | | `tax.exempt.commandfees` | Master bypass for all command fees | False | | `tax.exempt.commandfees.<group>`| Granular bypass for a specific command fee group | False | --- ## ๐Ÿท๏ธ Placeholders *(Requires PlaceholderAPI)* | Placeholder | Returns | |-------------|---------| | `%taxpro_wealth_projected%` | Projected wealth tax cost (e.g., `$150.00` or `Exempt ($0.00)`) | | `%taxpro_land_projected%` | Projected land tax cost based on current claims | | `%taxpro_strikes%` | Current land tax penalty strikes | | `%taxpro_strikes_max%` | The server's configured maximum strikes | --- ## โš™๏ธ Default Configuration (`config.yml`) ```yaml # ========================================== # TaxPro - Main Config # ========================================== General: Prefix: "&b&lTaxPro &7ยป &f" Debug-Mode: false # Enable logging tax deductions and payments to taxes.log Log-Transactions: true Integrations: # Requires Vault and a valid Economy provider (e.g., EssentialsX, CMI) Vault-Enabled: true # Requires GriefPrevention GriefPrevention-Enabled: true Wealth-Tax: Enabled: true # Should the tax run automatically based on its frequency? Set to false to only allow manual /tax forcewealth Auto-Run: true # Frequency in hours (168 = 1 week) Frequency-Hours: 168 Brackets: # Marginal tax system: Only taxes the amount within the bracket Tier1: Min: 0 Max: 25000 Rate: 0.0 Base-Fee: 0.0 Tier2: Min: 25001 Max: 100000 Rate: 0.02 Base-Fee: 500.0 Tier3: Min: 100001 Max: 500000 Rate: 0.05 Base-Fee: 5000.0 Tier4: Min: 500001 Max: 2000000 Rate: 0.08 Base-Fee: 40000.0 Tier5: Min: 2000001 Max: -1 # -1 represents infinity Rate: 0.10 Base-Fee: 200000.0 Land-Tax: Enabled: true # Should the tax run automatically based on its frequency? Set to false to only allow manual /tax forceland Auto-Run: true # Frequency in hours (24 = 1 day) Frequency-Hours: 24 cost-Per-Claim-Block: 0.01 # Tax-Method can be: # 'USED' (only blocks currently physically placed/claimed) # 'REMAINING' (blocks sitting in their pool that are NOT physically claimed yet) # 'TOTAL' (their entire block pool unconditionally: Used + Remaining combined) Tax-Method: "USED" Penalty-System

# ๐Ÿฆ TaxPro

Supported Java Version: Java 17+ Supported Minecraft Versions: 1. 13 - 1. 20+

A high-performance, completely lag-free economy and taxation plugin for Spigot/Paper servers. Built to handle massive player bases with seamless GriefPrevention and Vault integration.

## ๐Ÿ“‘ Table of Contents 1. [โœจ Features](#-features) 2. [๐Ÿ’ป Commands](#-commands) 3. [๐Ÿ” Permissions](#-permissions) 4. [๐Ÿท๏ธ Placeholders](#๏ธ-placeholders) 5. [โš™๏ธ Default Configuration (`config.yml`)](#๏ธ-default-configuration-configyml) 6. [๐Ÿ’ฌ Default Messages (`messages.yml`)](#-default-messages-messagesyml) 7. [๐Ÿ“ฅ Installation](#-installation) 8. [๐Ÿ› ๏ธ Building](#๏ธ-building)

## โœจ Features - ๐Ÿ“ˆ Progressive Wealth Tax: Automatically runs margin-based wealth tax deductions based on configured tiered brackets. - ๐Ÿก Land Tax: Taxes players for their active or unused GriefPrevention claim blocks. Includes a sophisticated strike-system that automatically unclaims abandoned properties. - ๐Ÿ’€ Death Penalties: Highly configurable wallet percentage deductions with world exemptions (e.g., bypass in PvP Arenas). - ๐Ÿ’ธ Command Fees: Charge players in-game money for running commands. Supports custom grouped fees and individual granular overrides with dynamic bypass permissions. - โฑ๏ธ Dynamic Data Persistence: All timers use persistent Unix timestamps. Even if your server crashes or goes offline for a week, it perfectly tracks exactly when the next tax is due! - โšก Asynchronous Optimization: Implements background batch processing. TaxPro safely executes heavy calculations on separate threads, guaranteeing it will never cause a server TPS drop.

## ๐Ÿ’ป Commands

| Command | Description | Permission Required | |---------|-------------|---------------------| | `/tax help` | Shows the plugin help menu | `tax.admin` | | `/tax stats` | View your personal projected taxes, due dates, and strikes | `tax.command.stats` | | `/tax forcewealth` | Force the wealth tax cycle and reset the timer | `tax.admin` | | `/tax forceland` | Force the daily land tax cycle and reset the timer | `tax.admin` | | `/tax reload` | Reloads all configurations and messages | `tax.admin` |

## ๐Ÿ” Permissions

| Permission Node | Description | Default | |-----------------|-------------|---------| | `tax.admin` | Access to administrative commands | OP | | `tax.command.stats` | Access to view personal stats | True | | `tax.exempt.wealth` | Exempts the user from the wealth tax | False | | `tax.exempt.land` | Exempts the user from the land tax | False | | `tax.exempt.deathpenalty` | Exempts the user from dropping money on death | False | | `tax.exempt.commandfees` | Master bypass for all command fees | False | | `tax.exempt.commandfees.`| Granular bypass for a specific command fee group | False |

## ๐Ÿท๏ธ Placeholders (Requires PlaceholderAPI)

| Placeholder | Returns | |-------------|---------| | `%taxpro_wealth_projected%` | Projected wealth tax cost (e.g., `$150. 00` or `Exempt ($0. 00)`) | | `%taxpro_land_projected%` | Projected land tax cost based on current claims | | `%taxpro_strikes%` | Current land tax penalty strikes | | `%taxpro_strikes_max%` | The server's configured maximum strikes |

## โš™๏ธ Default Configuration (`config.yml`)

```yaml # ========================================== # TaxPro - Main Config # ==========================================

General: Prefix: "&b&lTaxPro &7ยป &f" Debug-Mode: false # Enable logging tax deductions and payments to taxes.log Log-Transactions: true

Integrations: # Requires Vault and a valid Economy provider (e.g., EssentialsX, CMI) Vault-Enabled: true # Requires GriefPrevention GriefPrevention-Enabled: true

Wealth-Tax: Enabled: true # Should the tax run automatically based on its frequency? Set to false to only allow manual /tax forcewealth Auto-Run: true # Frequency in hours (168 = 1 week) Frequency-Hours: 168 Brackets: # Marginal tax system: Only taxes the amount within the bracket Tier1: Min: 0 Max: 25000 Rate: 0. 0 Base-Fee: 0. 0 Tier2: Min: 25001 Max: 100000 Rate: 0. 02 Base-Fee: 500. 0 Tier3: Min: 100001 Max: 500000 Rate: 0. 05 Base-Fee: 5000. 0 Tier4: Min: 500001 Max: 2000000 Rate: 0. 08 Base-Fee: 40000. 0 Tier5: Min: 2000001 Max: -1 # -1 represents infinity Rate: 0. 10 Base-Fee: 200000. 0

Land-Tax: Enabled: true # Should the tax run automatically based on its frequency? Set to false to only allow manual /tax forceland Auto-Run: true # Frequency in hours (24 = 1 day) Frequency-Hours: 24 cost-Per-Claim-Block: 0. 01 # Tax-Method can be: # 'USED' (only blocks currently physically placed/claimed) # 'REMAINING' (blocks sitting in their pool that are NOT physically claimed yet) # 'TOTAL' (their entire block pool unconditionally: Used + Remaining combined) Tax-Method: "USED" Penalty-System

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

๐Ÿ“Š Mod Details

Game
Minecraft Plugins
Author
AbhinavSanthosh
Version
1.0.0
Downloads
53
Endorsements
0
Category
bukkit
Created
5/6/2026
Updated
4/29/2026
Game Versions
1.13, 1.13.1, 1.13.2, 1.14, 1.14.1
Tags
economy, management, utility

๐Ÿ”ง 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 TaxPro support?

The author lists 1.13, 1.13.1, 1.13.2, 1.14, 1.14.1, 1.14.2. Other versions may work but are untested by the author.

What is the latest version of TaxPro?

Version 1.0.0, published 2026-04-29 with 53 downloads recorded at the source.

Keep browsing โ€” more Minecraft Plugins mods await

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