Advertisement
Kimeraweb

Untitled

Dec 24th, 2011
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.97 KB | None | 0 0
  1. # LoginServer will listen for connections on specified port
  2. loginserver.network.client.port=2106
  3.  
  4. # LoginServer will bind specified network interface
  5. # * - bind all interfaces
  6. loginserver.network.client.host=*
  7.  
  8. # How many times player can try to login before he get's banned for brute forcing
  9. loginserver.network.client.logintrybeforeban=5
  10.  
  11. # For what time in minutes player should be banned in case of brute forcing
  12. loginserver.network.client.bantimeforbruteforcing=15
  13.  
  14. # Host that will be used by LS to listen for GS connections
  15. loginserver.network.gameserver.host=*
  16.  
  17. # Port that will be used by LS to listen for GS connections
  18. loginserver.network.gameserver.port=9014
  19.  
  20. # Number of additional threads for NIO that will handle only reading
  21. loginserver.network.nio.threads.read=0
  22.  
  23. # Number of additional threads for NIO that will handle only writing
  24. loginserver.network.nio.threads.write=0
  25.  
  26. # Create accounts automatically or not?
  27. loginserver.accounts.autocreate=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement