mmo.properties 967 B

123456789101112131415161718192021
  1. #---------------------------------------------------------------
  2. #--MMO------------------------------------------------------
  3. #---------------------------------------------------------------
  4. # Sleep time for all Selectors
  5. # After he finished his job the Selector waits the given time in milliseconds
  6. # Lower values will speed up the loop and the Ping is smaller
  7. SleepTime = 20
  8. # Every loop it send a maximum of the given packages to each connection
  9. # Lower values will speed up the loop and the Ping is smaller but cause less output
  10. MaxSendPerPass = 12
  11. # Every loop it read a maximum of the given packages from each connection
  12. # Lower values will speed up the loop and the Ping is smaller but cause less input
  13. MaxReadPerPass = 12
  14. # Each unfinished read/write need a TEMP storage Buffer
  15. # on large player amount we need more Buffers
  16. # if there are not enough buffers new ones are generated but not stored for future usage
  17. HelperBufferCount = 20