Do you like receiving griefs? (I hope you don't) Do you want to avoid most of them? TooManyPerms is the right plugin for you!
Its functions are very simple: in permissions.ymlyou can add unlimited lists of allowed players, who can have (as you prefer) OP or specific permissions or can stay in specific groups.
The plugin always checks for unauthorized players who have these protected permissions or are in these groups, and punish them as YOU WANT! You can choose how to punish them simply by typing in punishments.yml the commands that should be dispatched from the player or from the console (starting them with a "@").
You can disable the OPs, permissions or groups check in config.yml if you don't need some of them.
TooManyPerms Telegram channel is available here! You can also stay updated on all my projects by following my own Telegram channel "AlbeMiglio Things" HERE!
1) Put the TooManyPerms.jar file in your plugins folder, and restart the server; 2) Add in permissions.yml the permissions and groups you want to protect and the players you want to trust for each permission or group; 3) Reload the configuration or restart server again;
If you use other plugins (except custom ones), contact me and feel free asking me to make TooManyPerms compatible with them!
/tmp opcheck - Sends the allowed OPs /tmp check <permission> - Sends the allowed players for a certain permission /tmp groupcheck <group> - Sends the allowed players for a certain group /tmp ver - Shows plugin version /tmp reload - Reloads all the configuration files
tmp.admin: Gives access to all TMP commands
tmp.use: Allows to type /tmp command.
tmp.checks: Gives access to all TMP checks commands - tmp.check - tmp.opcheck - tmp.groupcheck
tmp.version: Allows to see the running version of TMP.
Contact me if you are a server owner and want to see your server in this list! (@AlbeMiglioon Telegram)
TooManyPerms provides also for developers a great solution to implement the plugin into their Java projects.
It has three events:
Code (Text):
@EventHandler
public void onUnfairOpDetected(UnfairOpDetectedEvent event) {
Player player = event.getPlayer();
}
Code (Text):
@EventHandler
public void onUnfairPermsDetected(UnfairPermsDetectedEvent event) {
Player player = event.getPlayer();
String permission = event.getPermission();
}
Code (Text):
@EventHandler
public void onUnfairGroupsDetected(UnfairGroupsDetectedEvent event) {
Player player = event.getPlayer();
String group = event.getGroup();
}
Do you want to appear in this list? I would be really happy if you donate to me here! Anyway, you don't have to do it forcibly. This plugin is and will always be FREE.
If you like this plugin, feel free to leave a rating (and 5 stars), I'll be very happy! If you find bugs, please contact me privately, instead of writing them in ratings!