Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # =================================================
- # Settings authorization server
- # =================================================
- # Host and port for client connections
- LoginserverHostname = 138.201.62.XX
- LoginserverPort = 2107
- # Host and port for game servers
- LoginHost = 127.0.0.1
- LoginPort = 9015
- # Accept new game server in a free slot
- AcceptNewGameServer = True
- # Database Settings
- Driver = com.mysql.jdbc.Driver
- URL = jdbc:mysql://localhost/l2mythras
- Login = root
- Password = root123
- MaximumDbConnections = 100
- # How many seconds after the last activity will update database connection, default is 600 (10 minutes)
- MaxIdleConnectionTimeout = 600
- # Check interval of inactive connections, default is 60 (1 minute)
- IdleConnectionTestPeriod = 60
- # Automatically create accounts
- AutoCreateAccounts = true
- # Template for a login and password
- AccountTemplate = [A-Za-z0-9]{4,14}
- PasswordTemplate = [A-Za-z0-9]{4,16}
- # Hash for passwords
- # News hashing recommended whirlpool2
- PasswordHash = whirlpool2
- # Secondary check with an alternative encryption
- # Use it if you already have accounts created with another encryption
- LegacyPasswordHash = sha1
- # Caching Keys
- BlowFishKeys = 20
- RSAKeyPairs = 10
- # Highway IP
- # The number of failed logins, to ban the IP
- LoginTryBeforeBan = 250
- # Allowable minimum time between authorization from one IP (in seconds)
- LoginTryTimeout = 50
- # Banlength IP, if exceeded the number of failed logins (seconds)
- IpBanTime = 600
- # Adequately logged a successful login to the database
- LoginLog = false
- # Ping Game Server
- # The time between pings, in seconds, 0 - off
- GameServerPingDelay = 30
- # Maximum number of failed ping, above which, the connection to the game server is interrupted
- GameServerPingRetry = 4
- # Protection against Brutus. Unless the correct password, entering the server will appear as off.
- FakeLogin = False
- # Hide online number of players against hacking tools.
- HideOnline = True
Advertisement
Add Comment
Please, Sign In to add comment