Solved Default permissions group?

Discussion in 'Rust Discussion' started by AllHokage, Oct 5, 2015.

  1. Hello,

    So I'm making a server and was wondering would "player" still be the defult group even tho I changed it to 3 in rank?

    Code:
    {
      "owner": {
        "Title": "owner",
        "Rank": 0,
        "Perms": [
          "canchangestacksize"
        ],
        "ParentGroup": null
      },
      "admin": {
        "Title": "admin",
        "Rank": 1,
        "Perms": [],
        "ParentGroup": null
      },
      "moderator": {
        "Title": "moderator",
        "Rank": 2,
        "Perms": [],
        "ParentGroup": null
      },
      "player": {
        "Title": "player",
        "Rank": 3,
        "Perms": [],
        "ParentGroup": null
      }
    }
    Thanks!
     
  2. Although I'm not really familiar with the ranks, I would say player should be 1, then mod 2, admin 3, and owner 4. But it still should be the default group unless you use oxide's permission system and set them to a group, or hit f1 and type in console moderatorid or ownerid.
     
  3. opposite way around... I'm guessing auth level doesn't matter, its just to add extra information.
     
  4. I believe so, if you had the Plugin BetterChat, if you put the player's rank to 0 it would just put them as the default Rust players, but you would be getting errors, the ranks should be different for each group as follows.
     
  5. Wulf

    Wulf Community Admin

    Oxide by default adds all players to the "player" permissions group, auth level 1 users to the "moderator" group, and auth level 2 users to the "admin" group. The ranks are not corresponding to auth levels though, and the number starts with 0 as the highest rank.
     
  6. @Wulf Im trying to setup Automatic Build grades on my modded server but so far ive only been able to grant permissions to myself and the moderator. what im wondering is how to allow access to anyone who joins the server without me having to add them to a group.
     
  7. Wulf

    Wulf Community Admin

    Everyone who joins without auth level 1 or 2 is automatically placed in the 'player' group.
     
  8. So i would use oxide.grant player (then what goes here?) autogrades.1?
     
  9. Wulf

    Wulf Community Admin

    grant group player autogrades.1
     
  10. when i try this i just get Group "player" doesn't exist.
     
  11. Wulf

    Wulf Community Admin