Advertisement
Guest User

Untitled

a guest
Jul 9th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.95 KB | None | 0 0
  1. # ---------------------------------------------------------------------------
  2. # Game Server Settings
  3. # ---------------------------------------------------------------------------
  4. # This is the server configuration file. Here you can set up the connection information for your server.
  5. # This was written with the assumption that you are behind a router.
  6. # Dumbed Down Definitions...
  7. # LAN (LOCAL area network) - typically consists of computers connected to the same router as you.
  8. # WAN (WIDE area network) - typically consists of computers OUTSIDE of your router (ie. the internet).
  9. # x.x.x.x - Format of an IP address. Do not include the x'es into settings. Must be real numbers.
  10. # ---------------------------------------------------------------------------
  11. # Networking
  12. # ---------------------------------------------------------------------------
  13. #
  14. # Note: External/Internal address definitions was moved to the ipconfig.xml
  15. #
  16.  
  17. # Where's the Login server this gameserver should connect to
  18. # Default: 127.0.0.1
  19. LoginHost = 127.0.0.1
  20.  
  21. # TCP port the login server listen to for gameserver connection requests
  22. # Default: 9014
  23. LoginPort = 9014
  24.  
  25. # Bind address for gameserver. You should not need to change it in most cases.
  26. # Default: * (0.0.0.0)
  27. GameserverHostname = *
  28.  
  29. # Default: 7777
  30. GameserverPort = 7777
  31.  
  32.  
  33. # ---------------------------------------------------------------------------
  34. # Database
  35. # ---------------------------------------------------------------------------
  36. # Specify the appropriate driver and url for the database you're using.
  37. # Examples:
  38. # Driver = com.mysql.jdbc.Driver (default)
  39. # Driver = org.hsqldb.jdbcDriver
  40. # Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver
  41. Driver = com.mysql.jdbc.Driver
  42. # Database URL
  43. # URL = jdbc:mysql://localhost/l2jdb (default)
  44. # URL = jdbc:hsqldb:hsql://localhost/l2jdb
  45. # URL = jdbc:sqlserver://localhost/database = l2jdb/user = sa/password =
  46. URL = jdbc:mysql://localhost/l2jdb
  47. # Database user info (default is "root" but it's not recommended)
  48. Login = root
  49. # Database connection password
  50. Password = ******
  51.  
  52. # Default: 100
  53. MaximumDbConnections = 100
  54.  
  55. # Default: 0
  56. MaximumDbIdleTime = 0
  57.  
  58. # ---------------------------------------------------------------------------
  59. # Misc Server Settings
  60. # ---------------------------------------------------------------------------
  61. # This is the server ID that the Game Server will request.
  62. # Example: 1 = Bartz
  63. # Default: 1
  64. RequestServerID = 1
  65.  
  66. # True = The Login Server will give an other ID to the server if the requested ID is already reserved.
  67. # Default: True
  68. AcceptAlternateID = True
  69.  
  70. # Datapack root directory.
  71. # Defaults to current directory from which the server is started unless the below line is uncommented.
  72. #DatapackRoot = C:/Work/tmp/DataPack
  73.  
  74. # Define how many players are allowed to play simultaneously on your server.
  75. # Default: 100
  76. MaximumOnlineUsers = 100
  77.  
  78. # Numbers of protocol revisions that server allows to connect.
  79. # Delimiter is ;
  80. # WARNING: <u><b><font color="red">Changing the protocol revision may result in incompatible communication and many errors in game!</font></b></u>
  81. # Default: 216
  82. AllowedProtocolRevisions = 414
  83.  
  84.  
  85. # ---------------------------------------------------------------------------
  86. # Misc Player Settings
  87. # ---------------------------------------------------------------------------
  88.  
  89. # Character name template.
  90. # Examples:
  91. # CnameTemplate = [A-Z][a-z]{3,3}[A-Za-z0-9]*
  92. # The above setting will allow names with first capital letter, next three small letters,
  93. # and any letter (case insensitive) or number, like OmfgWTF1
  94. # CnameTemplate = [A-Z][a-z]*
  95. # The above setting will allow names only of letters with first one capital, like Omfgwtf
  96. # Default .* (allows any symbol)
  97. CnameTemplate = .*
  98.  
  99. # This setting restricts names players can give to their pets.
  100. # See CnameTemplate for details
  101. PetNameTemplate = .*
  102.  
  103. # Maximum number of characters per account.
  104. # Default: 7 (client limit)
  105. CharMaxNumber = 7
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement