I built a public server and there seems to some
bugs exist.
1.ERROR:Cvar_Update : src --many numbers-- length 256
exceeds MAX_CVAR_VALUE_STRING error happen and
my server will not work. A watchdog system can’t
revive this situation.
—This seems to be easy to resolve. There should
be some #define directive in game source then change
that from 256 to 1024.
2.A campaign script is limitted to 10 maps. If 11
maps campaign is set the server crush. I want to
build more than 10 maps campaign server.
—This also seems to be easy. There might be some
array to house map names like cmpgn_maps[10] so this
should be changed to 32 or more.
I think #1 error is really critical. So please fix
this bugs.
Thanks.