Page 1 of 1

Please report which UT game versions used for play

Posted: Sat Aug 19, 2023 10:41 pm
by Buggie
Please report what game versions players used on network servers, if you know, and if it is NOT in the next list:
  • 400
  • 432
  • 436
  • 440
  • 451
  • 469
If you can grep game server logs (if you keep it), it will be nice too.
Corresponding log line look as:
DevNet: Level server received: HELLO REVISION=0 MINVER=432 VER=469
So grep for ' VER=[0-9]*' -o with later apply "sort" and "unique", can get answer for that.
Barbie wrote:
Can you do this, please?

Re: Please report which UT game versions used for play

Posted: Sat Aug 19, 2023 11:01 pm
by darksonny
Buggie wrote: Sat Aug 19, 2023 10:41 pm Please report what game versions players used on network servers, if you know, and if it it is not in the next list:
  • 400
  • 432
  • 436
  • 440
  • 451
  • 469
If you can grep game server logs (if you keep it), it will be nice too.
Corresponding log line look as:
DevNet: Level server received: HELLO REVISION=0 MINVER=432 VER=469
So grep for ' VER=[0-9]*' -o with later apply "sort" and "unique", can get answer for that.
Barbie wrote:
Can you do this, please?
make a poll instead, more simple to see votes

Re: Please report which UT game versions used for play

Posted: Sat Aug 19, 2023 11:08 pm
by Buggie
It is about items which NOT in the list from first post.
I can't make poll for unknown set of items.   
Auto merged new post submitted 2 minutes later
I better explain by example.
It must be next post:
"hey, I know player with version 1234 come to my server. 1234 not in your list!"

Re: Please report which UT game versions used for play

Posted: Sun Aug 20, 2023 5:04 am
by UnrealGGecko
There might be still (or at least there was) UTDemo only servers, DLD clan in particular did it. So I guess 348 can be added?

Re: Please report which UT game versions used for play

Posted: Sun Aug 20, 2023 11:08 am
by Buggie
Thanks. I more think about net compatible versions. I even not sure about v400. AFAIK v432 is lowest possible minimum for play on v436-v469 servers.

Re: Please report which UT game versions used for play

Posted: Sun Aug 20, 2023 5:20 pm
by EvilGrins
Until that glitch is fixed in 469, I'm not getting it.

Re: Please report which UT game versions used for play

Posted: Sun Aug 20, 2023 7:04 pm
by Buggie
Offtopic here.

Re: Please report which UT game versions used for play

Posted: Mon Aug 21, 2023 8:18 am
by Barbie
Hmm, the according log line looks like this example at my server:
Level server received: HELLO REVISION=0 MINVER=432 VER=469
Summary of the last approximative 9 months of the normal MH server:
UT-Clients_Versions.jpg
UT-Clients_Versions.jpg (32.34 KiB) Viewed 781 times

Re: Please report which UT game versions used for play

Posted: Tue Aug 22, 2023 10:10 am
by Barbie
Any idea for the first two with high version numbers?

Re: Please report which UT game versions used for play

Posted: Tue Aug 22, 2023 10:44 am
by Buggie
Someone enter your server address into ut2004 client.

Re: Please report which UT game versions used for play

Posted: Sun Aug 27, 2023 7:47 pm
by snowguy
I only store 100 log files which at the moment goes back around 2 weeks but the sample size is decent:

$ cat ucc.init.log* | grep -o ' VER=[0-9]*' | wc
20823 20823 187407


$ cat ucc.init.log* | grep -o ' VER=[0-9]*' | sort | uniq
VER=400
VER=405
VER=432
VER=436
VER=451
VER=469

Re: Please report which UT game versions used for play

Posted: Sun Aug 27, 2023 10:32 pm
by Buggie
Thanks. Can you run last command with -c?

$ cat ucc.init.log* | grep -o ' VER=[0-9]*' | sort | uniq -c

Re: Please report which UT game versions used for play

Posted: Mon Aug 28, 2023 5:10 am
by snowguy
Here you go:

$ cat ucc.init.log* | grep -o ' VER=[0-9]*' | sort | uniq -c
4 VER=400
6 VER=432
5679 VER=436
1049 VER=451
14261 VER=469