/JustPermissions

A permissions plugin for Minestom

Primary LanguageJava

JustPermissions

Build Status

A permissions plugin for Minestom

To run the commands give yourself the permission "justpermissions.perms" from the console with "jp player permission add justpermissions.perms"

Should be stable enough for a server

Progress

  • player specific permissions
  • group specific permissions
  • permission saving
  • update player perms when changing group perms
  • customizable messages?
  • more storage options (h2, sqlite etc)
  • clean up the code
  • comment code
  • allow importing of LuckPerm databases
  • prefixes and suffixes

Please report bugs in the issue tab

Adding you permissions to the tab completion

If you want to add your extensions permissions to the tab completion then add this to your extension.json

"meta": {
    "permissions": [
      "yourextension.permissions",
      "ye.permissions"
    ]
  }

So your extension.json should now look like this

{
  "entrypoint": "com.example.extensionname.Main",
  "name": "Extension",
  "version": "1.0.0",
  "meta": {
    "permissions": [
      "yourextension.permissions",
      "ye.permissions"
    ]
  }
}