Customizing Your UT Online Browser Tabs
(Thanks go out to [osX]Agamotto and Bob van Burkleo for providing this great information!
3 easy steps to make your own custom UT browser tab. In my example I am making a tab that will only show the populated CTF servers.
1) Open Unreal Tournament.ini and find the
[UBrowser.UBrowserMainClientWindow]
These are the tabs you currently have and there are a number of extra slots. Go to the first one that equals 'None' and replace it with a name for your new tab process.
I used the name UBrowserPopCTF so my line looked like:
ServerListNames[10]=UBrowserPopCTF
2) Now we have to make the tab process definition. Immediately below the list of ServerListNames you will see the already existing definitions. Just copy and paste the definition closest to the one you want. I used [UBrowserCTF]:
[UBrowserCTF]
ListFactories[0]=UBrowser.UBrowserSubsetFact,SupersetTag=UBrowserAll,Game
Type=CTFGame,bCompatibleServersOnly=True
ListFactories[0]=UBrowser.UBrowserSubsetFact,SupersetTag=UBrowserAll,Game
Type=CTFGame,bCompatibleServersOnly=True
Change the name to match the new one you created in the ServerListNames:
[UBrowserPopCTF]
Then just add the parameter that lets you filter out servers with zero players. That would be MinPlayers=1. So the changed line should look like this:
ListFactories[0]=UBrowser.UBrowserSubsetFact,SupersetTag=UBrowserAll,MinP
layers=1,GameType=CTFGame,bCompatibleServersOnly=True
layers=1,GameType=CTFGame,bCompatibleServersOnly=True
You are now done with the Unreal Tournament.ini file. Close it.
3) Now go into the Unreal Tournament System folder and open the file UBrowser.int. Here you are defining how the title will display on your new tab. Just add the title you want to be displayed at the end of the file.
In my example I used the name 'Populated CTF' linked to my new UBrowserPopCTF class so I added the line:
UBrowserPopCTF=Populated CTF
Close the file and that's it! Now when you use the Unreal Tournament browser you will have a tab named 'Populated CTF' and it will only show CTF servers that have 1 or more people on them.

