Results 1 to 10 of 28

Thread: Increase download speed COD2 1.0

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Global Mossaderator Mitch's Avatar
    Join Date
    Nov 2012
    Posts
    654
    Thanks
    204
    Thanked 450 Times in 305 Posts
    Quote Originally Posted by Mitch View Post
    I could try to increase the value of sv_maxRate. (like you can change sv_maxClients to 128)
    Code:
    if (!rate) {
    	blockspersnap = 1;
    } else {
    	blockspersnap = ( (rate * cl->snapshotMsec) / 1000 + MAX_DOWNLOAD_BLKSIZE ) /
    		MAX_DOWNLOAD_BLKSIZE;
    }
    
    if (blockspersnap < 0)
    	blockspersnap = 1;
    
    while (blockspersnap--) {
    Increasing the blocks per snap won't work. It will give this error:

    ERROR: Netchan_Transmit: length = 18531
    I changed the first MAX_DOWNLOAD_BLKSIZE from 2048 to 36864. (gonna test now if it works on 4096)

    Edit: a higher value doesn't improve your download speed.
    Last edited by Mitch; 24th February 2014 at 14:02.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •