ProtectorAPI
🟡 Updated this yearPreview

🔍 Analysis
- 👍 0.0% endorsement rate
- 🏆 #799 of 1452 bukkit mods in this game by downloads
📋 About This Mod
# ProtectorAPI An API try to provide a standard protection API. ## What can it do? 1. Get the protection range that protected by protection plugin 2. Check player can place/break/interact the block 3. Register flags easily 4. You don't need to worry about multiple protection plugins in the server, ProtectorAPI handles it perfectly. ## Supported Plugins 1. Residence 2. Dominion 3. HuskClaims (since v1.0.3) 4. IridiumSkyblock (since v2.0.0) 5. PlotSquared 6. WorldGuard 7. RedProtect 8. BentoBox 9. GriefDefender (since v2.2.1) 10. BlockLocker 11. Bolt 12. ChestProtection 13. ChestShop (since v1.0.2) 14. ExcellentClaims (since v1.1.0) 15. FactionsUUID (since v1.0.3) 16. FunnyGuilds (since v1.0.3) 17. GriefPrevention (since v1.0.6) 18. HuskTowns (since v1.0.6) 19. Lands 20. LockettePro (since v1.0.1) 21. LWC (LWCX) 22. NoBuildPlus (since v1.0.7) 23. QuickShop-Reremake 24. QuickShop-Hikari 25. ShopChest 26. Towny ## Usage See <https://lijinhong11.gitbook.io/protectorapi/start/readme> ## Develop See <https://lijinhong11.gitbook.io/protectorapi/develop/setup> Javadocs: <https://javadoc.io/doc/io.github.lijinhong11/protectorapi-api/latest> ## Develop Examples ### Check whether a player can place ```java Player player = ...; boolean allow = ProtectorAPI.allowPlace(player); ``` If you need to check wehether a player can place a block at a location (safer than previous method): ```java Player player = ...; Block block = ...; boolean allow = ProtectorAPI.allowPlace(player, block); ``` ### Check whether a player can break ```java Player player = ...; boolean allow = ProtectorAPI.allowBreak(player); ``` If you need to check whether a player can break a block at a location (safer than previous method): ```java Player player = ...; Block block = ...; boolean allow = ProtectorAPI.allowBreak(player, block); ``` ### Check whether a player can interact **NOTE: RedProtect didn't have a more general interaction flag, so we uses "redstone" flag to check instead.** ```java Player player = ...; boolean allow = ProtectorAPI.allowInteract(player); ``` If you need to whether a player can interact block at a location (safer than previous method): ```java Player player = ...; Block block = ...; boolean allow = ProtectorAPI.allowInteract(player, block); ```
# ProtectorAPI An API try to provide a standard protection API.
## What can it do? 1. Get the protection range that protected by protection plugin 2. Check player can place/break/interact the block 3. Register flags easily 4. You don't need to worry about multiple protection plugins in the server, ProtectorAPI handles it perfectly.
## Supported Plugins 1. Residence 2. Dominion 3. HuskClaims (since v1. 0. 3) 4. IridiumSkyblock (since v2. 0. 0) 5. PlotSquared 6. WorldGuard 7. RedProtect 8. BentoBox 9. GriefDefender (since v2. 2. 1) 10. BlockLocker 11. Bolt 12. ChestProtection 13. ChestShop (since v1. 0. 2) 14. ExcellentClaims (since v1. 1. 0) 15. FactionsUUID (since v1. 0. 3) 16. FunnyGuilds (since v1. 0. 3) 17. GriefPrevention (since v1. 0. 6) 18. HuskTowns (since v1. 0. 6) 19. Lands 20. LockettePro (since v1. 0. 1) 21. LWC (LWCX) 22. NoBuildPlus (since v1. 0. 7) 23. QuickShop-Reremake 24. QuickShop-Hikari 25. ShopChest 26. Towny
## Usage
See
## Develop
See
## Develop Examples ### Check whether a player can place ```java Player player = ...;
boolean allow = ProtectorAPI.allowPlace(player); ``` If you need to check wehether a player can place a block at a location (safer than previous method): ```java Player player = ...; Block block = ...;
boolean allow = ProtectorAPI.allowPlace(player, block); ``` ### Check whether a player can break ```java Player player = ...;
boolean allow = ProtectorAPI.allowBreak(player); ``` If you need to check whether a player can break a block at a location (safer than previous method): ```java Player player = ...; Block block = ...;
boolean allow = ProtectorAPI.allowBreak(player, block); ``` ### Check whether a player can interact NOTE: RedProtect didn't have a more general interaction flag, so we uses "redstone" flag to check instead. ```java Player player = ...;
boolean allow = ProtectorAPI.allowInteract(player); ``` If you need to whether a player can interact block at a location (safer than previous method): ```java Player player = ...; Block block = ...;
boolean allow = ProtectorAPI.allowInteract(player, block); ```
📊 Mod Details
- Game
- Minecraft Plugins
- Author
- lijinhong11
- Version
- 2.3.0
- Downloads
- 554
- Endorsements
- 0
- Category
- bukkit
- Created
- 8/11/2025
- Updated
- 7/29/2026
- Game Versions
- 26.1, 26.1.1, 26.1.2, 26.2
- Tags
- library, 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 ProtectorAPI support?
The author lists 26.1, 26.1.1, 26.1.2, 26.2. Other versions may work but are untested by the author.
What is the latest version of ProtectorAPI?
Version 2.3.0, published 2026-07-29 with 554 downloads recorded at the source.
Keep browsing — more Minecraft Plugins mods await