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

server kicks players with reason "added to banned list"


Post New Thread Reply   
 
Thread Tools Display Modes
deprale
Senior Member
Join Date: Oct 2018
Location: Leeds
Old 08-08-2022 , 07:31   Re: server kicks players with reason "added to banned list"
Reply With Quote #21

If you are running ReHLDS try:
Code:
sv_rehlds_movecmdrate_max_avg "99999"
sv_rehlds_movecmdrate_avg_punish -1
sv_rehlds_movecmdrate_max_burst "99999"
sv_rehlds_movecmdrate_burst_punish -1
sv_rehlds_stringcmdrate_max_avg "99999"
sv_rehlds_stringcmdrate_avg_punish "-1"
sv_rehlds_stringcmdrate_max_burst "99999"
sv_rehlds_stringcmdrate_burst_punish "-1"
__________________
deprale is offline
Aleksvarme
Junior Member
Join Date: Jul 2022
Old 08-08-2022 , 13:51   Re: server kicks players with reason "added to banned list"
Reply With Quote #22

Quote:
Originally Posted by fysiks View Post
Show the output of the following server commands (put the result of each in [code][/code] tags):

Code:
meta version
meta list
amxx version
amxx list
Makes sure that this is without any custom plugins, only the default AMX Mod X plugins.
meta version
Code:
Metamod v1.20  2013-02-16 (5:13)
by Will Day <[email protected]>
   http://www.metamod.org/
compiled: Feb 16 2013, 17:11:35 +0100 (optimized)

meta list
Currently loaded plugins:
      description      stat pend  file              vers      src  load  unlod
 [ 1] AMX Mod X        RUN   -    amxmodx_mm_i386.  v1.9.0.5  ini  Start ANY  
 [ 2] xproto           RUN   -    xproto_i386.so    v0.2.23   ini  Start Never
 [ 3] Ham Sandwich     RUN   -    hamsandwich_amxx  v1.9.0.5  pl1  ANY   ANY  
 [ 4] CSX              RUN   -    csx_amxx_i386.so  v1.9.0.5  pl1  ANY   ANY  
4 plugins, 4 running

amxx version
AMX Mod X 1.9.0.5294 (http://www.amxmodx.org)
Authors:
	David "BAILOPAN" Anderson, Pavol "PM OnoTo" Marko
	Felix "SniperBeamer" Geyer, Jonny "Got His Gun" Bergstrom
	Lukasz "SidLuke" Wlasinski, Christian "Basic-Master" Hammacher
	Borja "faluco" Ferrer, Scott "DS" Ehlert
Compiled: Dec  3 2021 15:54:56
Built from: https://github.com/alliedmodders/amxmodx/commit/363871a
Build ID: 5294:363871a
Core mode: JIT+ASM32

amxx list
Currently loaded plugins:
       name                    version     author            file             status   
 [  1] Admin Base              1.9.0.5294  AMXX Dev Team     admin.amxx       running  
 [  2] Admin Commands          1.9.0.5294  AMXX Dev Team     admincmd.amxx    running  
 [  3] Admin Help              1.9.0.5294  AMXX Dev Team     adminhelp.amxx   running  
 [  4] Slots Reservation       1.9.0.5294  AMXX Dev Team     adminslots.amxx  running  
 [  5] Multi-Lingual System    1.9.0.5294  AMXX Dev Team     multilingual.am  running  
 [  6] Menus Front-End         1.9.0.5294  AMXX Dev Team     menufront.amxx   running  
 [  7] Commands Menu           1.9.0.5294  AMXX Dev Team     cmdmenu.amxx     running  
 [  8] Players Menu            1.9.0.5294  AMXX Dev Team     plmenu.amxx      running  
 [  9] Maps Menu               1.9.0.5294  AMXX Dev Team     mapsmenu.amxx    running  
 [ 10] Plugin Menu             1.9.0.5294  AMXX Dev Team     pluginmenu.amxx  running  
 [ 11] Admin Chat              1.9.0.5294  AMXX Dev Team     adminchat.amxx   running  
 [ 12] Anti Flood              1.9.0.5294  AMXX Dev Team     antiflood.amxx   running  
 [ 13] Scrolling Message       1.9.0.5294  AMXX Dev Team     scrollmsg.amxx   running  
 [ 14] Info. Messages          1.9.0.5294  AMXX Dev Team     imessage.amxx    running  
 [ 15] Admin Votes             1.9.0.5294  AMXX Dev Team     adminvote.amxx   running  
 [ 16] NextMap                 1.9.0.5294  AMXX Dev Team     nextmap.amxx     running  
 [ 17] Nextmap Chooser         1.9.0.5294  AMXX Dev Team     mapchooser.amxx  running  
 [ 18] TimeLeft                1.9.0.5294  AMXX Dev Team     timeleft.amxx    running  
 [ 19] Pause Plugins           1.9.0.5294  AMXX Dev Team     pausecfg.amxx    running  
 [ 20] Stats Configuration     1.9.0.5294  AMXX Dev Team     statscfg.amxx    running  
 [ 21] StatsX                  1.9.0.5294  AMXX Dev Team     statsx.amxx      running  
21 plugins, 21 running
Aleksvarme is offline
Aleksvarme
Junior Member
Join Date: Jul 2022
Old 08-08-2022 , 13:55   Re: server kicks players with reason "added to banned list"
Reply With Quote #23

Quote:
Originally Posted by deprale View Post
If you are running ReHLDS try:
Code:
sv_rehlds_movecmdrate_max_avg "99999"
sv_rehlds_movecmdrate_avg_punish -1
sv_rehlds_movecmdrate_max_burst "99999"
sv_rehlds_movecmdrate_burst_punish -1
sv_rehlds_stringcmdrate_max_avg "99999"
sv_rehlds_stringcmdrate_avg_punish "-1"
sv_rehlds_stringcmdrate_max_burst "99999"
sv_rehlds_stringcmdrate_burst_punish "-1"
Hi, thanks for the reply where should I put this?
Aleksvarme is offline
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 08-08-2022 , 22:11   Re: server kicks players with reason "added to banned list"
Reply With Quote #24

Looks like you're running xproto which I assume is for allowing non-Steam players but it'll also have access to do do just about anything else with your server. Remove this.

P.S. Anything that can enable non-Steam players to join your server is not supported here.
__________________
fysiks is offline
Infamanious
Senior Member
Join Date: Dec 2005
Old 08-08-2022 , 22:55   Re: server kicks players with reason "added to banned list"
Reply With Quote #25

Quote:
Originally Posted by Aleksvarme View Post
Hi, thanks for the reply where should I put this?
Those commands go in your amxx cfg. Also xproto is a big no no here. Not only is it a vulnerability for yourself but it's also unfair for the game developers....although one might reasonably assume a non steam user might one day buy the game.
Infamanious is offline
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 08-08-2022 , 22:56   Re: server kicks players with reason "added to banned list"
Reply With Quote #26

Quote:
Originally Posted by Infamanious View Post
although one might reasonably assume a non steam user might one day buy the game.
Not a reasonable assumption. Also, irrelevant.
__________________
fysiks is offline
Infamanious
Senior Member
Join Date: Dec 2005
Old 08-08-2022 , 23:05   Re: server kicks players with reason "added to banned list"
Reply With Quote #27

Quote:
Originally Posted by fysiks View Post
Not a reasonable assumption. Also, irrelevant.
Fair enough. All dproto users must alt-f4. usermod -s /sbin/nologin dproto
Infamanious is offline
Aleksvarme
Junior Member
Join Date: Jul 2022
Old 08-09-2022 , 11:26   Re: server kicks players with reason "added to banned list"
Reply With Quote #28

Quote:
Originally Posted by fysiks View Post
Looks like you're running xproto which I assume is for allowing non-Steam players but it'll also have access to do do just about anything else with your server. Remove this.

P.S. Anything that can enable non-Steam players to join your server is not supported here.
It would be best for me if I didn't have to use XPROTO, but what can I do, not many people have bought this game, unfortunately.
Aleksvarme is offline
Aleksvarme
Junior Member
Join Date: Jul 2022
Old 08-09-2022 , 11:26   Re: server kicks players with reason "added to banned list"
Reply With Quote #29

Quote:
Originally Posted by Infamanious View Post
Those commands go in your amxx cfg. Also xproto is a big no no here. Not only is it a vulnerability for yourself but it's also unfair for the game developers....although one might reasonably assume a non steam user might one day buy the game.
I hope that will work and It won't be xproto fault
Aleksvarme is offline
Aleksvarme
Junior Member
Join Date: Jul 2022
Old 08-10-2022 , 13:26   Re: server kicks players with reason "added to banned list"
Reply With Quote #30

Quote:
Originally Posted by Aleksvarme View Post
I hope that will work and It won't be xproto fault
Same Problem I have left NO nervous
Aleksvarme is offline
Reply


Thread Tools
Display Modes

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 07:22.


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