AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   General (https://forums.alliedmods.net/forumdisplay.php?f=7)
-   -   Advanced Bans Problem (https://forums.alliedmods.net/showthread.php?t=319849)

Cenzuratu 11-23-2019 06:21

Advanced Bans Problem
 
Hello, I have Advanced Bans by Exolent but, when I try to ban someone I have a error :

[AdvancedBans] ML_NOTFOUND: AB_NOT_AUTHORIZED

Any solves?

ThePwnt 11-23-2019 07:15

Re: Advanced Bans Problem
 
Did you installed the translation file?

Quote:

Place advanced_bans.txt from the bottom of this post in your server's addons/amxmodx/data/lang folder.

iceeedr 11-23-2019 08:44

Re: Advanced Bans Problem
 
Remove dproto from server.

PHP Code:

if( !IsValidAuthid(target_authid) )
    {
        
console_print(client"[AdvancedBans] %L"client"AB_NOT_AUTHORIZED");
        return 
PLUGIN_HANDLED;
    } 

PHP Code:

#define REGEX_STEAMID_PATTERN "^^STEAM_0:(0|1):\d+$"
#define IsValidAuthid(%1) (regex_match_c(%1, g_SteamID_pattern, g_regex_return) > 0) 


Cenzuratu 11-23-2019 11:24

Re: Advanced Bans Problem
 
Quote:

Originally Posted by iceeedr (Post 2674135)
Remove dproto from server.

PHP Code:

if( !IsValidAuthid(target_authid) )
    {
        
console_print(client"[AdvancedBans] %L"client"AB_NOT_AUTHORIZED");
        return 
PLUGIN_HANDLED;
    } 

PHP Code:

#define REGEX_STEAMID_PATTERN "^^STEAM_0:(0|1):\d+$"
#define IsValidAuthid(%1) (regex_match_c(%1, g_SteamID_pattern, g_regex_return) > 0) 


It's not working :(

iceeedr 11-23-2019 11:27

Re: Advanced Bans Problem
 
Did you remove the dproto / reunion plugin from the server?

Cenzuratu 11-27-2019 09:35

Re: Advanced Bans Problem
 
Quote:

Originally Posted by iceeedr (Post 2674166)
Did you remove the dproto / reunion plugin from the server?

Solved, thanks! :)


All times are GMT -4. The time now is 10:03.

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