Results 1 to 8 of 8
  1. #1
    Spamming the boards! ETc|#.Jay.#'s Avatar
    Join Date
    Oct 2010
    Replies
    197
    Country
    Germany
    Xfire
    skype: jay1110
    Discord
    ETc|₪.Jay.₪#4322
    Clan
    ETc|Clan

    max gamestats exceeded

    Hi,

    allways when my server reached the gsdata over 16000 bytes the server kick out all players with the reason max gamestats exceeded. There is no lag before the kick of all players. The problem is not often but it sucks when map finishs in 3 mins.

    My question is, is it possible to change this value 16000 to 32000 with hexeditor, disassembling or what ever?

    Or gives there a other solution?

    Thanks for all answers




    Code:
    !stat
    SERVER STATUS
             game:       OBJECTIVE/PLAYING
             players:        36/64          ( 56.25%)
             entities:      206/958         ( 21.50%) (301 high)
             gsdata:      10553/16000 bytes ( 65.96%)
             serverinfo:    840/1024  bytes ( 82.03%)
             systeminfo:   2057/8192  bytes ( 25.11%)
             largestcs:     259/1024  bytes ( 25.29%) (61 index)
             -DATABASE
             user:  19621 records  (10 bans)
             level:   17 records
             map:    129 records
             -HEAP
             bullet-model:     17 KB  (   17 KB high)
             hit-model:       307 KB  (  429 KB high)
             -RATES
             entity spawn:   34.33/s
             entity free:    33.51/s
             frames:         20.00/s
    11 kills 88deaths = 0 skill




  2. #2
    Spamming the boards! ETc|#.Jay.#'s Avatar
    Join Date
    Oct 2010
    Replies
    197
    Country
    Germany
    Xfire
    skype: jay1110
    Discord
    ETc|₪.Jay.₪#4322
    Clan
    ETc|Clan
    found this in the et source in etmain qgame

    Code:
    #define MAX_GAMESTATE_CHARS 16000
    typedef struct {
    	int stringOffsets[MAX_CONFIGSTRINGS];
    	char stringData[MAX_GAMESTATE_CHARS];
    	int dataCount;
    } gameState_t;
    could some coder put this to 32000 with some easy c# script for jaymod?
    11 kills 88deaths = 0 skill




  3. #3
    Developer giriel's Avatar
    Join Date
    Oct 2010
    Replies
    233
    Country
    Belgium
    Xfire
    giriel
    Clan
    -TB#
    Hmm well the thing is all clients have that size fixed as well, simply changing it on the server side will not solve the issue according to me.

  4. #4
    Spamming the boards! testforecho's Avatar
    Join Date
    Oct 2011
    Replies
    103
    Giriel beat me with the answer, ok, 2nd

    You can't change it with a hex editor.

    You could recompile the server (etded.x86) with a bigger MAX_GAMESTATE_CHARS, to avoid the 'MAX_GAMESTATE_CHARS exceeded' message, but I see a big problem here:

    In the mod, you have (in Cg_local.h)

    typedef struct {
    gameState_t gameState; // gamestate from server
    [... other members ...]
    } cgs_t;

    gameState_t size depends on MAX_GAMESTATE_CHARS, so you will have a bigger one in the server, and a smaller in the mod.
    When it's retrieved by the client via trap_GetGameState, it will overflow over the memory area of the other members of that struct, causing all sorts of bugs and crashes.

    So if I didn't overlook anything, I think there is no easy way out, you'd better find the cause of that problem (happens only with some maps?)

  5. #5
    Spamming the boards! Dragonji's Avatar
    Join Date
    Oct 2010
    Replies
    444
    Country
    Poland
    Xfire
    dragonji
    Steam
    dragonji
    Clan
    sKy-e
    You can use special versions of some maps on your server to avoid kicking players for MAX_GAMESTATE_CHARS eg. Venice NE4 instead of Venice and so on.

    Clanpage || --------------------------------------------------------------------- || sKy.eSports Clan

  6. #6
    Spamming the boards! ETc|#.Jay.#'s Avatar
    Join Date
    Oct 2010
    Replies
    197
    Country
    Germany
    Xfire
    skype: jay1110
    Discord
    ETc|₪.Jay.₪#4322
    Clan
    ETc|Clan
    yes, its client side, on etmain i compiled it with 32000, but i have no 50 players for test

    @testforecho on hexeditor i only found gsdata in serverside but no value, client side have no gsdata.

    @dragon still using them if not i had every map a crash.


    i had a coder in my clan he solved everything but hes allways offline atm,
    11 kills 88deaths = 0 skill




  7. #7
    epsi
    Guest epsi's Avatar
    back in time when i played often on "GER Rumpelbude" they had the same problem on the map "Venice". Somehow they fixed it i think, maybe ask them?

    http://forum.ger-funclan.de/index.php

    TS3

    server.ger-funclan.de:27000

    Friendly bunch of guys, pretty sure they will help you if they can ;D

  8. #8
    Spamming the boards! ETc|#.Jay.#'s Avatar
    Join Date
    Oct 2010
    Replies
    197
    Country
    Germany
    Xfire
    skype: jay1110
    Discord
    ETc|₪.Jay.₪#4322
    Clan
    ETc|Clan
    nah, a bunch of nazis lol, i know them since 2004, the leader played allways on guo clan server. Will not talk with this guys.



    and i allready added this venice, this map is not my problem.my problem is in goldrush and others.
    11 kills 88deaths = 0 skill




Posting Permissions