How do I assign players admin in my server?

Post Reply
User avatar
kraze
Former staff
Former staff
Posts: 4362
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Fri Sep 17, 2010 9:06 am
Location: California

How do I assign players admin in my server?

Post by kraze »

  1. On the "File manager" tab in your control panel from the drop down box select "ServerAdmin.json" then hit edit.
  2. You will be presented with something like this;

    Code: Select all

    {
        "groups":
        {
            "admin_group": { "type": "allowed", "commands": [ "sv_changemap", "sv_reset", "sv_say" ] },
            "mod_group": { "type": "disallowed", "commands": [ "sv_ban", "sv_reset" ] },
            "clan_group": { "type": "allowed", "commands": [ "sv_kick", "sv_say" ] }
        }
        
        "users":
        {
            "Sr. Lance": { "id": 1838634, "groups": [ "admin_group" ] },
            "Murphy": { "id": 11641641, "groups": [ "mod_group" ] },
            "SabaHell": { "id": 3403402, "groups": [ "clan_group" ] }
        }
    }
  3. You will now need to edit each part to suit your needs. For example, you would need to edit the "allowed commands" for each group and the "users" for each group.
  4. see here for a list of valid rcon commands
@Kraze^NFo> Juski has a very valid point
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
Post Reply