Raised This Month: $51 Target: $400
 12% 

SourceMod Admin config not working


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
coty9090
Senior Member
Join Date: Aug 2007
Old 12-07-2016 , 12:43   SourceMod Admin config not working
Reply With Quote #1

SourceMod 1.8.0.5963
Metamod:Source version 1.10.7-dev
Plugin interface version: 15:14
SourceHook version: 5:5

I updated my SM/MMS versions because my admin config and a few plugins weren't working, but even then it still didn't get my admin config to work. I tried doing a fresh install of SM/MMS with no custom plugins and it's still not working. Is there a currently known working versions of SM/MMS? or if these work together?
coty9090 is offline
Walgrim
AlliedModders Donor
Join Date: Dec 2015
Location: France
Old 12-07-2016 , 13:40   Re: SourceMod Admin config not working
Reply With Quote #2

Quote:
Metamod:Source version 1.10.7-dev
Try the stable version and if the problem continue give more details, like your admin config.
__________________
Walgrim is offline
hamilton5
Veteran Member
Join Date: Oct 2012
Location: USA
Old 12-08-2016 , 09:19   Re: SourceMod Admin config not working
Reply With Quote #3

or like what admin config are you even speaking about.. do show it .. redact steamids and names if you wish..
hamilton5 is offline
coty9090
Senior Member
Join Date: Aug 2007
Old 12-08-2016 , 12:34   Re: SourceMod Admin config not working
Reply With Quote #4

The MM:S stable version 1.10.6 doesn't fix it either.

I tried using the admin_simple.ini config with:

"STEAM_0:0:XXXX" "99:z" // Bacon

When that didn't work i tried using the admins.cfg:

Admins
{
"Bacon"
{
"auth" "steam"
"identity" "STEAM_0:0:XXXX"
"flags" "z"
"immunity" "99"
}
}

neither are giving me admin access.
coty9090 is offline
Walgrim
AlliedModders Donor
Join Date: Dec 2015
Location: France
Old 12-08-2016 , 14:50   Re: SourceMod Admin config not working
Reply With Quote #5

Quote:
"identity" "STEAM_0:0:XXXX"
you're just leaving your steamid I suppose lol.
Well maybe you can try to create a group in admin_groups and set you as owner in admin.cfg
__________________
Walgrim is offline
coty9090
Senior Member
Join Date: Aug 2007
Old 12-08-2016 , 15:02   Re: SourceMod Admin config not working
Reply With Quote #6

Quote:
Originally Posted by Walgrim View Post
you're just leaving your steamid I suppose lol.
Well maybe you can try to create a group in admin_groups and set you as owner in admin.cfg
Creating the group didn't work.
coty9090 is offline
Walgrim
AlliedModders Donor
Join Date: Dec 2015
Location: France
Old 12-08-2016 , 16:27   Re: SourceMod Admin config not working
Reply With Quote #7

Quote:
Creating the group didn't work.
I love how you show details, I don't even know if you're doing it good or wrong..
__________________
Walgrim is offline
hamilton5
Veteran Member
Join Date: Oct 2012
Location: USA
Old 12-08-2016 , 17:16   Re: SourceMod Admin config not working
Reply With Quote #8

what game are you even using? can you type status in console and insure your steam id is correct?

https://wiki.alliedmods.net/Adding_A...#Simple_Admins
hamilton5 is offline
coty9090
Senior Member
Join Date: Aug 2007
Old 12-08-2016 , 19:37   Re: SourceMod Admin config not working
Reply With Quote #9

Quote:
Originally Posted by hamilton5 View Post
what game are you even using? can you type status in console and insure your steam id is correct?

https://wiki.alliedmods.net/Adding_A...#Simple_Admins

CS:S and it is correct. I've been using it for years and it only stopped working after a valve update or something. Also it was working correctly before with the admins simple config. Nothing had changed in my config files.

Quote:
Originally Posted by Walgrim View Post
I love how you show details, I don't even know if you're doing it good or wrong..
Code:
Groups
{
    /**
     * Allowed properties for a group:
     *
     *   "flags"           - Flag string.
     *   "immunity"        - Immunity level number, or a group name.
     *                         If the group name is a number, prepend it with an 
     *                         '@' symbol similar to admins_simple.ini.  Users 
     *                         will only inherit the level number if it's higher 
     *                         than their current value.
     */
    "Default"
    {
        "immunity"        "1"
    }
    
    "Full Admins"
    {
        /**
         * You can override commands and command groups here.
         * Specify a command name or group and either "allow" or "deny"
         * Examples:
         *         ":CSDM"            "allow"
         *        "csdm_enable"    "deny"
         */
         Overrides
         {
         }
        "flags"            "abcdefghiz"

        /* Largish number for lots of in-between values. */
        "immunity"        "99"
    }
    
    "Owner"
    {
        "flags"    "z"
        "immunity"    "99"
    }
}
Even if i did this group wrong, shouldn't the admins simple and admins config work just fine like it has for me before?
Also edited admins config for group:

Code:
Admins
{
    "Bacon"
    {
        "auth"            "steam"
        "identity"        "STEAM_0:0:XXXX"
        "group"            "Owner"
        "flags"            "z"
        "immunity"        "99"
    }
}

Last edited by coty9090; 12-15-2016 at 12:47.
coty9090 is offline
Walgrim
AlliedModders Donor
Join Date: Dec 2015
Location: France
Old 12-09-2016 , 12:41   Re: SourceMod Admin config not working
Reply With Quote #10

Quote:
Groups
{
/**
* Allowed properties for a group:
*
* "flags" - Flag string.
* "immunity" - Immunity level number, or a group name.
* If the group name is a number, prepend it with an
* '@' symbol similar to admins_simple.ini. Users
* will only inherit the level number if it's higher
* than their current value.
*/
"Default"
{
"immunity" "1"
}

"Full Admins"
{
/**
* You can override commands and command groups here.
* Specify a command name or group and either "allow" or "deny"
* Examples:
* ":CSDM" "allow"
* "csdm_enable" "deny"
*/
Overrides
{
}
"flags" "abcdefghiz"

/* Largish number for lots of in-between values. */
"immunity" "99"
}

"Owner"
{
"flags" "z"
"immunity" "99"
}
}

Even if i did this group wrong, shouldn't the admins simple and admins config work just fine like it has for me before?
Also edited admins config for group:

Admins
{
"Bacon"
{
"auth" "steam"
"identity" "STEAM_0:0:XXXX"
"group" "Owner"
"flags" "z"
"immunity" "99"
}
}
Please, wrap this with the #code. And why are you hiding your STEAM_ID, it's useless.
__________________
Walgrim is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 13:41.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode