Advertisement
Guest User

gameserver

a guest
Jul 30th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. # ================================================================
  2. # Gameserver setting
  3. # ================================================================
  4.  
  5. # Bind ip of the gameserver, use * to bind on all available IPs.
  6. GameserverHostname = *
  7. GameserverPort = 7777
  8.  
  9. # This is transmitted to the clients connecting from an external network, so it has to be a public IP or resolvable hostname
  10. # If this ip is resolvable by Login just leave *
  11. # ExternalHostname = 127.0.0.1
  12.  
  13. # This is transmitted to the client from the same network, so it has to be a local IP or resolvable hostname.
  14. # If this ip is resolvable by Login just leave *
  15. # InternalHostname = 127.0.0.1
  16.  
  17. # The Loginserver host and port.
  18. LoginPort = 9014
  19. LoginHost = 127.0.0.1
  20.  
  21. # This is the server id that the gameserver will request.
  22. RequestServerID = 1
  23.  
  24. # If set to true, the login will give an other id to the server (if the requested id is already reserved).
  25. AcceptAlternateID = True
  26.  
  27. # ================================================================
  28. # Database informations
  29. # ================================================================
  30.  
  31. URL = jdbc:mysql://localhost/olddrake
  32. #URL = jdbc:hsqldb:hsql://localhost/acis
  33. #URL = jdbc:sqlserver://localhost/database=acis/user=sa/password=
  34.  
  35. Login = root
  36. Password = !@#lineage!@#A
  37.  
  38. # Maximum database connections (minimum 2, basically 10 if number under 10, default 100).
  39. MaximumDbConnections = 100
  40.  
  41. # Idle connections expiration time (0 = never expire, default).
  42. MaximumDbIdleTime = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement