1. I'm using a plugin called chatmute and chathandler and I'm trying to setup the permissions right now, and it's not working.

    Code:
    {
      "admin": {
        "Title": "admin",
        "Rank": 0,
        "Perms": [
          "color_owner",
          "chat.mute",
          "chat.globalmute",
          "chat.notglobalmuted"
        ],
        "ParentGroup": null
      },
      "moderator": {
        "Title": "moderator",
        "Rank": 1,
        "Perms": [
          "color_mod",
          "moderator",
          "chat.mute",
          "chat.notglobalmuted"
        ],
        "ParentGroup": null
      },
      "player": {
        "Title": "player",
        "Rank": 2,
        "Perms": [
          "color_player",
          "player"
        ],
        "ParentGroup": null
      }
    }
    As you see, I have my group as "admin" and yet, I can't /mute someone. Any tips?

    Code:
    {
      "76561198001479663": {
        "LastSeenNickname": "Onyx",
        "Perms": [],
        "Groups": [
          "admin"
        ]
      },
      "76561198064559244": {
        "LastSeenNickname": "Kyanite",
        "Perms": [],
        "Groups": [
          "player"
        ]
      },
      "76561198026729862": {
        "LastSeenNickname": "Nemo2134",
        "Perms": [],
        "Groups": [
          "player"
        ]
      },
      "76561198048680121": {
        "LastSeenNickname": "RudeRiley",
        "Perms": [],
        "Groups": [
          "player"
        ]
      }
    }
     
  2. Wulf

    Wulf Community Admin

    Did you add the permissions using the Oxide console commands? Do you get any reply when trying to use the chat command?
     
  3. Nevermind, I restarted the server and it fixed. Thanks for the quick reply though, and sorry for taking your time.
     
  4. Wulf

    Wulf Community Admin

    Did you edit the config manually while the server was running?
     
  5. Yes, I did that originally.
     
  6. Wulf

    Wulf Community Admin

    The server would have to be offline to edit it manually, else it uses what is stored in memory. That's why commands are recommended. ;)
     
  7. Thanks for the tip, I'll keep that in mind.