Tip on Finding Poorly Documented Console Commands

  • 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.

aruzinsky

Skilled
Jan 31, 2001
187
0
0
Visit site
For example, find Unreal Script such as this:

exec function AddBotNamed(string BotName)
{
if ( Level.NetMode == NM_Client )
{
ClientMessage("Can't added named bots from client.");
return;
}

if ( DeathMatchPlus(Level.Game) != None )
DeathMatchPlus(Level.Game).BotConfig.DesiredName = BotName;
Level.Game.ForceAddBot();
}

The above function corresponds to the console command "addbotnamed."

To find such unreal script, use the UnrealEd Class editor to export all script to *.uc files. Then do a word search with Windows Explorer.