TaxPro
๐ก Updated this year๐ผ๏ธ Gallery (1 images)
๐ 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.
## ๐ท๏ธ 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
๐ 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
