Can't find sethome plugin and can't understand permissions - Explain please

Maybe start by trying to nail down why the recommended plugins crash, and get help with them. Unsupported means we won’t support it.

This would be in whatever format your permissions plugin supports. Sponge’s API allows for permission groups to have certain plugin-definable ‘options’, and it’s saying to use this with them.

IMHO Pex is documented beautifully. It’s also stopped development, so you’d be better off with a currently-supported plugin such as LuckPerms.

Generally functionality, configurability, standardization, and overall sanity of a plugin are prized over the plugin being drag and drop regardless of its function. The concept of warps requires configuration of how many warps a user can make, and it’s not as simple as ending a permission with a number. Thus, the warps plugin is not drag and drop.

And a tip for the future - If you’re intending to paste code, or code-like text, such as JSON literals, put three backticks (```) on a line above it followed by the language name (```json), and put another three backticks on the line after it.

So this:
```json
“group”: {
“test”: [
{
“options”: {
“warpCreationLimit”: “2”
}
}
]
}
```
turns into this:

"group": {
    "test": [
        {
            "options": {
                "warpCreationLimit": "2"
            }
        }
    ]
}
2 Likes