UE2 - UT2kX Subclassed Gametype - In the same Tab online

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

Phoenix_Wing

Official Kantham Stalker
Mar 28, 2008
386
0
0
California
Is it possible to subclass a gametype and keep it in the same tab it originally was?

I'm trying to make a slight tweak to the Assault gametype that can only be done via the main game class. However if I subclass this, it no longer appears in the Assault section.

See the thing is, I want to have custom load screens for our server. I used the ol Jailbreak method of doing this, but can only do it from the core game class.

If we could get it in the Assault tab it would work perfectly... but that just doesn't seem to work D:

Is there any way around this?
 

Phoenix_Wing

Official Kantham Stalker
Mar 28, 2008
386
0
0
California
Code:
function GetServerInfo (out ServerResponseLine ServerState)
{
  Super.GetServerInfo(ServerState);
  ServerState.GameType = "Assault";
}