Setting a group for kits?Solved
Are you allowed to set up a group onced authenitcated it gives access ot a oxide group which ables a player to claim a kit by /kit?

Discord Auth:
{
"Settings": {
"Bot Token": "",
"Oxide Group": "kits.discord",
"Enable Logging": false,
"Auth Commands": [
"auth",
"authenticate"​

Kit permissions:
"discord": {
"name": "Discord",
"description": "You must be authenticated on discord for this kit.",
"max": 31,
"cooldown": 86400.0,
"authlevel": 0,
"hide": false,
"npconly": false,
"permission": "kits.discord",
"image": "https://cdn0.iconfinder.com/data/icons/free-social-media-set/24/discord-512.png",
"building": null,​
The problem is that the plugin is trying to grant an oxide group and you want it to grant a single permission. What you need to do is create a separate oxide group (o.group add <name>) for example - "o.group add discord" and then grant that group the kits.discord permission by doing - "o.grant group <name> kits.discord". This also allows you to give Discord members other privages by granting that oxide group different permissions.
Already figured it out, thanks for the response!
Locked automatically