Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linuskay/instantbreak
A Minecraft Spigot plugin that allows players to instantly mine/break configured blocks.
https://github.com/linuskay/instantbreak
minecraft minecraft-plugin spigot spigot-plugin
Last synced: 2 days ago
JSON representation
A Minecraft Spigot plugin that allows players to instantly mine/break configured blocks.
- Host: GitHub
- URL: https://github.com/linuskay/instantbreak
- Owner: LinusKay
- Created: 2021-05-31T10:09:45.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-02T17:09:49.000Z (over 3 years ago)
- Last Synced: 2023-07-14T04:29:24.535Z (over 1 year ago)
- Topics: minecraft, minecraft-plugin, spigot, spigot-plugin
- Language: Java
- Homepage:
- Size: 2.19 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# InstaBreak
A Minecraft Spigot plugin that allows players to instantly mine/break configured blocks.
NOTE: this plugin was built for and tested only on 1.16+. Compatibility with older versions is not guaranteed.
## Features
* White/blacklisting to control which blocks can be instantly broken
* Whitelisting for items players can instantly break blocks with
* Custom permission nodes with bypasses
* Configurable cooldown timer
* Configurable user messages
```yaml
# config.yml# only either use_blacklist or use_whitelist should be true
# blacklist is better for disallowing a small amount of blocks
# whitelist is better for disallowing a large amount of blocks
use_blacklist: true
blacklist:
- ORANGE_WOOL
- DIAMOND
use_whitelist: false
whitelist:
- GRASS_BLOCK
- STONE
# whitelist only certain items
use_item_whitelist: true
item_whitelist:
- DIAMOND_PICKAXE
# show message to player when whitelisted item is selected
notify_active_item: true
notify_active_item_message: §e§lInstant Break is now active!
# cooldown time between instant block break
cooldown: 5
# change permission nodes
# allow player to instantly break permitted blocks
permission_break: "instantbreak.break"
# allow player to bypass black/whitelist
# this means they will ignore the black/whitelist, letting them break any block
permission_whitelist_bypass: "instantbreak.whitelist.bypass"
# allow player to bypass instant break cooldown
permission_bypass_cooldown: "instantbreak.bypass.cooldown"
```