Hello, I've recently started developing my own server. I have ran into an issue.
When someone tries to log in 3 times with a wrong password the client simply closes, but the IP is not banned. After closing the client i can open it up again and log in just fine. I have found in LoginServer.ini:
# ---------------------------------------------------------------------------
# Security
# ---------------------------------------------------------------------------
# How many times you can provide an invalid account/pass before the IP gets banned.
# Default: 5
LoginTryBeforeBan = 5
# Time you won't be able to login back again after LoginTryBeforeBan tries to login.
# Default: 900 (15 minutes)
LoginBlockAfterBan = 900
# If set to True any GameServer can register on your login's free slots
# Default: True
AcceptNewGameServer = True
# Flood Protection. All values are in MILISECONDS.
# Default: True
EnableFloodProtection = True
But no matter what i do here nothing changes. What am i missing?
Sorry if this has been asked before, I checked everywhere and didn't find an answer.