Skip to content

Configure Admins

Impact edited this page Nov 5, 2017 · 5 revisions

CallAdmin uses the sourcemod override system to be as flexible as possible, thus setup admin access is trivial.
By default all players with the BAN flag (d) are considered to be an admin, but you can override this.
You can find some examples here, for more informations have a look at the official article about the sourcemod mod override system

Global override

As already said, the default flag is BAN (d), you can change this globally in configs/admin_overrides.cfg like so.

"Overrides"
{
	"sm_calladmin_admin"        "a"
}

Group override

If you need more flexibility you can override access per group in configs/admin_groups.cfg like so.

"Groups"
{
	"MyCallAdminAdmins"
	{
		"flags"        "a"

		"Overrides"
		{
					"sm_calladmin_admin"        "allow"
		}
	}
}