Advertisement
Guest User

Untitled

a guest
Jun 21st, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. # ================================================================
  2. # General server setting !!! REQUIRED to configure to everyone !!!
  3. # ================================================================
  4.  
  5. # This is transmitted to the clients connecting from an external network, so it has to be a public IP or resolvable hostname
  6. ExternalHostname=penetration.no-ip.org
  7.  
  8. # This is transmitted to the client from the same network, so it has to be a local IP or resolvable hostname
  9. InternalHostname=penetration.no-ip.org
  10.  
  11. # Bind ip of the LoginServer, use * to bind on all available IPs
  12. LoginserverHostname=*
  13. LoginserverPort=2106
  14. # How many times you can provide an invalid account/pass before the IP gets banned
  15. LoginTryBeforeBan=10
  16. # Time you won't be able to login back again after LoginTryBeforeBan tries to login. Provide a value in seconds. Default 10min. (600)
  17. LoginBlockAfterBan=600
  18. GMMinLevel=100
  19.  
  20. # The address on which login will listen for GameServers, use * to bind on all available IPs
  21. LoginHostname=*
  22.  
  23. # The port on which login will listen for GameServers
  24. LoginPort=9014
  25.  
  26. # If set to true any GameServer can register on your login's free slots
  27. AcceptNewGameServer = False
  28.  
  29. # If false, the licence (after the login) will not be shown
  30. # It is highly recomended for Account Seciurity to leave this option as defalut (True)
  31. ShowLicence = True
  32.  
  33. # Database info
  34. Driver=com.mysql.jdbc.Driver
  35. #Driver=org.hsqldb.jdbcDriver
  36. #Driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
  37. URL=jdbc:mysql://localhost/l2jdb
  38. #URL=jdbc:hsqldb:hsql://localhost/l2jdb
  39. #URL=jdbc:sqlserver://localhost/database=l2jdb/user=sa/password=
  40. Login=root
  41. Password=6666
  42. MaximumDbConnections=10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement