Is this formatted correctly?Solved

This is what my \oxide\data\BetterChat.json looks like. The only problem is that in game, I cannot give the Admin or Owner perm to anyone, and it doesnt show up in chat. Can anyone look this through and tell me what is wrong?

[
  {
    "GroupName": "default",
    "Priority": 0,
    "Title": {
      "Text": "[Player]",
      "Color": "#55aaff",
      "Size": 15,
      "Hidden": false,
      "HiddenIfNotPrimary": false
    },
    "Username": {
      "Color": "#55aaff",
      "Size": 15
    },
    "Message": {
      "Color": "white",
      "Size": 15
    },
    "Format": {
      "Chat": "{Title} {Username}: {Message}",
      "Console": "{Title} {Username}: {Message}"
    }
  },
  {
    "GroupName": "Admin",
    "Priority": 2,
    "Title": {
      "Text": "[Admin]",
      "Color": "#AAFF55",
      "Size": 15,
      "Hidden": false,
      "HiddenIfNotPrimary": false
    },
    "Username": {
      "Color": "#AAFF55",
      "Size": 15
    },
    "Message": {
      "Color": "white",
      "Size": 15
    },
    "Format": {
      "Chat": "{Title} {Username}: {Message}",
      "Console": "{Title} {Username}: {Message}"
    }
  },
  {
    "GroupName": "Owner",
    "Priority": 1,
    "Title": {
      "Text": "[Owner]",
      "Color": "#AAFF55",
      "Size": 15,
      "Hidden": false,
      "HiddenIfNotPrimary": false
    },
    "Username": {
      "Color": "#AAFF55",
      "Size": 15
    },
    "Message": {
      "Color": "white",
      "Size": 15
    },
    "Format": {
      "Chat": "{Title} {Username}: {Message}",
      "Console": "{Title} {Username}: {Message}"
    }
  }
]

Can you elaborate on "I cannot give the Admin or Owner perm to anyone"? How are you trying to do so, and what's the result/response? There are no permissions you have to grant but instead you have to add users to the group either via the `chat` command or the `oxide.usergroup` command.

It seems like your priorities aren't set up correctly. Owner should likely have the priority 0, admin 1, and default 2.

Locked automatically