38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
/// This file contains all information related to matching
|
|
/// mangles names to something more readable
|
|
|
|
namespace WBM
|
|
{
|
|
public static class MangledNames
|
|
{
|
|
//
|
|
// Variables
|
|
//
|
|
|
|
public const string AKRifleShotClip = "JMKOGEAHEEO";
|
|
public const string SMGShotClip = "DFFGGCFCLLA";
|
|
// fps limit value
|
|
public const string fpsValue = "NMEFNDLAMJO";
|
|
public const string showElo = "NGKFFEHNABD";
|
|
// show squad servers
|
|
public const string isClan = "LBFNALHNIPM";
|
|
// show testing servers
|
|
public const string isTesting = "BGPDGOKNOMA";
|
|
public const string chatList = "OHFEDOINKKJ";
|
|
public const string gameState = "LAKHBPCBDHD";
|
|
public const string nickList = "HKCNPKMCEEI";
|
|
public const string personGun = "MKDGGFLFIFB";
|
|
public const string localPlayerIndex = "DNEGCKGOMNI";
|
|
public const string teamList = "NNLNLLFJPCK";
|
|
public const string statsList = "BENNIHEPNHP";
|
|
|
|
//
|
|
// functions
|
|
//
|
|
|
|
public const string drawChatMessage = "JEAEIDKGGKL";
|
|
public const string clearMessages = "DAALHBBPELA";
|
|
public const string onFPSChanged = "INDPBMMBCBG";
|
|
public const string addMessage = "FIKLAPEFMDK";
|
|
}
|
|
}
|