For direct access use https://forums.oldunreal.com
It's been quite a while since oldunreal had an overhaul, but we are moving to another server which require some updates and changes. The biggest change is the migration of our old reliable YaBB forum to phpBB. This system expects you to login with your username and old password known from YaBB.
If you experience any problems there is also the usual "password forgotten" function. Don't forget to clear your browser cache!
If you have any further concerns feel free to contact me: Smirftsch@oldunreal.com

Monsterhunt tab.

UT now belongs to the "old" Unreal as well. Supporting it for OpenGL and Sound its time to put up a board now.

Moderator: Buggie

Post Reply
User avatar
prime
OldUnreal Member
Posts: 34
Joined: Sun Dec 16, 2007 11:25 am

Monsterhunt tab.

Post by prime »

Hi all,

Using UT v469, but happened in previous versions too..... If I go to the "find internet games" click on "UT Servers" I get a big long list of servers.....however there is never anything populated in the "Monster Hunt" gametype tab even though there are mosnterhunt severs listed in the main server list.....

Is there any way to fix this?

Cheers.

Phill.
User avatar
Eternity
OldUnreal Member
Posts: 102
Joined: Thu Sep 26, 2019 4:07 pm

Re: Monsterhunt tab.

Post by Eternity »

This means UBrowser settings in UnrealTournament.ini are not properly edited...
Also, need to keep in mind that all UT99 versions, including v469b, have a case sensitivity issue in UBrowser... For this reason in order to make sure all the servers are listed in the servers browser, you have to specify at least 3 possible cases in the ListFactories array. For example:

[UBrowserMH]
ListFactories[0]=UBrowser.UBrowserSubsetFact,SupersetTag=UBrowserAll,GameType=MonsterHunt,bCompatibleServersOnly=True
ListFactories[1]=UBrowser.UBrowserSubsetFact,SupersetTag=UBrowserAll,GameType=Monsterhunt,bCompatibleServersOnly=True
ListFactories[2]=UBrowser.UBrowserSubsetFact,SupersetTag=UBrowserAll,GameType=monsterhunt,bCompatibleServersOnly=True
ListFactories[3]=UBrowser.UBrowserSubsetFact,SupersetTag=UBrowserAll,GameType=MonsterHuntSB,bCompatibleServersOnly=True
ListFactories[4]=UBrowser.UBrowserSubsetFact,SupersetTag=UBrowserAll,GameType=MonsterHuntFix,bCompatibleServersOnly=True
ListFactories[5]=UBrowser.UBrowserSubsetFact,SupersetTag=UBrowserAll,GameType=MonsterHuntArena,bCompatibleServersOnly=True


Additionally can add a modifications as MonsterHuntSB, because the GameType parameter in UBrowser is a pure String type variable and has nothing to do with the class references or the names.
You do not have the required permissions to view the files attached to this post.
User avatar
[]KAOS[]Casey
OldUnreal Member
Posts: 4497
Joined: Sun Aug 07, 2011 4:22 am
Location: over there

Re: Monsterhunt tab.

Post by []KAOS[]Casey »

sounds like the case insensitive string equality operator should be used here if that's the case
User avatar
Eternity
OldUnreal Member
Posts: 102
Joined: Thu Sep 26, 2019 4:07 pm

Re: Monsterhunt tab.

Post by Eternity »

[]KAOS[]Casey wrote: Wed Apr 21, 2021 7:46 am sounds like the case insensitive string equality operator should be used here if that's the case
Yes...
https://madrixis.de/undox/Source_ubrows ... ct.html#95
If there is no any specific reason to use case sensitive operator there, then it can be fixed, by replacing " GameType != L.GameType " to " !(GameType ~= L.GameType) ".
Post Reply

Return to “UnrealTournament General Forum”