SA-MP Forums Archive
"you are banned from this server" - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: "you are banned from this server" (/showthread.php?tid=583435)



"you are banned from this server" - DavidSparks - 28.07.2015

So I have a problem with my server.

So let's say its regular day, players roleplaying, having fun and then someone gets a timeout.

When this player gets a timeout its like 50% chance that he gets the message

"You are banned from this server".

This player then has to relog 2-5 times to be able to log in again.

How can I fix this?


Re: "you are banned from this server" - KayJ - 28.07.2015

Restart your Internet modem.


Re: "you are banned from this server" - Lorenc_ - 28.07.2015

pawn Code:
#if defined DEBUG_MODE
    public OnIncomingConnection( playerid, ip_address[ ], port ) {
        SendRconCommand( "reloadbans" );
    }
#endif
The theory was that reloading bans on a connection would work. It did for me previously, don't know anymore. I use it only for debugging.

I wouldn't recommend it on a production server. My players relog regardless and never report such an issue to me. I don't think you should be concerned too much about this, every server encounters the issue.


Re: "you are banned from this server" - MD5 - 28.07.2015

Quote:
Originally Posted by Lorenc_
View Post
pawn Code:
#if defined DEBUG_MODE
    public OnIncomingConnection( playerid, ip_address[ ], port ) {
        SendRconCommand( "reloadbans" );
    }
#endif
The theory was that reloading bans on a connection would work. It did for me previously, don't know anymore. I use it only for debugging.

I wouldn't recommend it on a production server. My players relog regardless and never report such an issue to me. I don't think you should be concerned too much about this, every server encounters the issue.
Good Answer, +1