Guest User

Untitled

a guest
Jun 29th, 2018
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. # ================================================================
  2. # General login server setting !!! REQUIRED to configure to everyone !!!
  3. # ================================================================
  4.  
  5. # Bind ip of the loginserver, use 0.0.0.0 to bind on all available IPs
  6. LoginServerHostname = 0.0.0.0
  7. LoginServerPort = 2106
  8. GMMinLevel = 100
  9.  
  10. # The port, ip on which login will listen for GameServers
  11. LoginHostname = 127.0.0.1
  12. LoginPort = 9014
  13.  
  14. # If set to true any GameServer can register on your login's free slots
  15. AcceptNewGameServer = False
  16.  
  17. # If false, the licence (after the login) will not be shown
  18. ShowLicence = True
  19.  
  20. # Database info
  21. Driver = com.mysql.jdbc.Driver
  22. #Driver=org.hsqldb.jdbcDriver
  23. #Driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
  24. URL = jdbc:mysql://localhost/l2jdb4
  25. #URL=jdbc:hsqldb:hsql://localhost/l2jdb4
  26. #URL=jdbc:sqlserver://localhost/database=l2jdb/user=sa/password=
  27. Login = root
  28. Password = *********
  29.  
  30. # Useable values: "True" - "False", use this option to choose whether accounts will be created
  31. # automatically or not.
  32. AutoCreateAccounts=False
  33.  
  34. # The delay in minutes after which the login updates the gameservers IP's (usefull when their ip is dynamic)
  35. # (0 = disable)
  36. IpUpdateTime=0
  37.  
  38.  
  39. # ==============================================================
  40. # Test server setting, shoudnt be touched in online game server
  41. # ==============================================================
  42.  
  43. Debug = False
  44. Assert = False
  45. Developer = False
  46. # Enforce GG Authorization from client
  47. # Login server will kick client if client bypassed GameGuard authentication
  48. ForceGGAuth=False
  49.  
  50. #FloodProtection. time in ms
  51. EnableFloodProtection=True
  52. FastConnectionLimit=15
  53. NormalConnectionTime=700
  54. FastConnectionTime=350
  55. MaxConnectionPerIP=50
  56.  
  57. #Ban management
  58. # number of attempt before a user is banned when he fails his login
  59. LoginTryBeforeBan=10
  60. # Time you won't be able to login back again after LoginTryBeforeBan tries to login. Provide a value in seconds. Default 10min. (600)
  61. LoginBlockAfterBan=600
Add Comment
Please, Sign In to add comment