2
0

communityserver.properties 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # ================================================================
  2. # General server setting !!! REQUIRED to configure to everyone !!!
  3. # ================================================================
  4. # The address on which Community Board server will listen for GameServers, use * to bind on all available IPs
  5. # Default: *
  6. # CSHostname = *
  7. # The port on which Community Board server will listen for GameServers
  8. # Default: 9013
  9. # CSPort = 9013
  10. # If set to true any GameServer can register on your login's free slots
  11. AcceptNewGameServer = False
  12. # Database info
  13. Driver = com.mysql.jdbc.Driver
  14. #Driver = org.hsqldb.jdbcDriver
  15. #Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver
  16. URL = jdbc:mysql://localhost/l2jcb
  17. #URL = jdbc:hsqldb:hsql://localhost/l2jcb
  18. #URL = jdbc:sqlserver://localhost/database=l2jcb/user=sa/password=
  19. Login = root
  20. Password =
  21. MaximumDbConnections = 10
  22. # ================================================================
  23. # TCP Server start
  24. # ================================================================
  25. # ExternalHostAddress: Use * bind all available IPs
  26. # Default: *
  27. ExternalHostAddress = *
  28. # ExternalPort: Use 0 bind all available Ports
  29. # Default: 0
  30. ExternalPort = 9013
  31. # ConnectionQueue: Maximum connections.
  32. # Default: 50
  33. ConnectionQueue = 50
  34. # Default: False
  35. FloodProtectionEnabled = False
  36. # Default: 15
  37. FastConnectionLimit = 15
  38. # Default: 350
  39. FastConnectionTime = 350
  40. # Default: 700
  41. NormalConnectionTime = 700
  42. # Default: 50
  43. MaxConnectionperIP = 50
  44. # Default: False
  45. IPBannEnabled = False
  46. # Default:
  47. IPBannList =
  48. # ================================================================
  49. # TCP Client start
  50. # ================================================================
  51. # SendBufferSize: DO NOT TOUCH!
  52. # Default: 8192
  53. SendBufferSize = 8192
  54. # SendBufferSize: DO NOT TOUCH!
  55. # Default: 8192
  56. ReceiveBufferSize = 8192
  57. # ================================================================
  58. # Threading
  59. # ================================================================
  60. # Approximated number of working threads running simultaneously in the pool
  61. ThreadPoolSize = 1