105 lines
4.4 KiB
C#
105 lines
4.4 KiB
C#
public static class GlobalVars {
|
|
public static string ClientDir = "";
|
|
public static string ScriptsDir = "";
|
|
public static string MapsDir = "";
|
|
public static string CustomPlayerDir = "";
|
|
public static string IP = "localhost";
|
|
public static string Version = "";
|
|
public static string MD5 = "";
|
|
public static string SharedArgs = "";
|
|
public static string DefaultScript = "";
|
|
public static string DefaultScriptMD5 = "";
|
|
public static bool AdminMode = false;
|
|
// vars for loader
|
|
public static bool ReadyToLaunch = false;
|
|
// server settings
|
|
public static string Map = "Baseplate.rbxl";
|
|
public static int RobloxPort = 53640;
|
|
public static int ServerPort = 53640;
|
|
public static int DefaultRobloxPort = 53640;
|
|
public static int PlayerLimit = 12;
|
|
public static int RespawnTime = 5;
|
|
public static bool IsPersonalServer = false;
|
|
public static bool upnp = true;
|
|
public static bool melee = false;
|
|
public static bool navigation = false;
|
|
public static bool social = false;
|
|
public static bool powerup = false;
|
|
public static bool explosives = false;
|
|
public static bool transport = false;
|
|
public static bool ranged = false;
|
|
public static bool musical = false;
|
|
public static bool building = false;
|
|
public static int blacklist1 = 0;
|
|
public static int blacklist2 = 0;
|
|
public static int blacklist3 = 0;
|
|
public static int blacklist4 = 0;
|
|
public static int blacklist5 = 0;
|
|
public static int blacklist6 = 0;
|
|
public static int blacklist7 = 0;
|
|
public static int blacklist8 = 0;
|
|
public static string ChatType = "Both";
|
|
// player settings
|
|
public static int UserID = 0;
|
|
public static string PlayerName = "Player";
|
|
// launcher settings
|
|
public static bool CloseOnLaunch = false;
|
|
public static bool LocalPlayMode = false;
|
|
// client shit
|
|
public static string SelectedClient = "";
|
|
public static bool UsesPlayerName = false;
|
|
public static bool UsesID = true;
|
|
public static string SelectedClientDesc = "";
|
|
public static bool LoadsAssetsOnline = false;
|
|
public static bool LegacyMode = false;
|
|
public static string SelectedClientMD5 = "";
|
|
public static int SelectedClientVersion = 0;
|
|
public static bool HasRocky = false;
|
|
// clientinfo creator
|
|
public static bool ClientCreator_UsesPlayerName = false;
|
|
public static bool ClientCreator_UsesID = false;
|
|
public static bool ClientCreator_LoadsAssetsOnline = false;
|
|
public static string ClientCreator_SelectedClientDesc = "";
|
|
public static bool ClientCreator_LegacyMode = false;
|
|
public static string ClientCreator_SelectedClientMD5 = "";
|
|
public static int ClientCreator_SelectedClientVersion = 0;
|
|
public static bool ClientCreator_HasRocky = false;
|
|
// info editor
|
|
public static string InfoEditor_Version = "";
|
|
public static string InfoEditor_DefaultClient = "";
|
|
public static string InfoEditor_ScriptPath = "";
|
|
public static string InfoEditor_ScriptMD5 = "";
|
|
// charcustom
|
|
public static string Custom_Hat1ID_Offline = "NoHat.rbxm";
|
|
public static string Custom_Hat2ID_Offline = "NoHat.rbxm";
|
|
public static string Custom_Hat3ID_Offline = "NoHat.rbxm";
|
|
public static string Custom_Gear1 = "NoGear.rbxm";
|
|
public static string Custom_Gear2 = "NoGear.rbxm";
|
|
public static string Custom_Gear3 = "NoGear.rbxm";
|
|
public static int Custom_TShirt = 0;
|
|
public static int Custom_Shirt = 0;
|
|
public static int Custom_Pants = 0;
|
|
public static string Custom_IconType = "NBC";
|
|
public static int HeadColorID = 24;
|
|
public static int TorsoColorID = 23;
|
|
public static int LeftArmColorID = 24;
|
|
public static int RightArmColorID = 24;
|
|
public static int LeftLegColorID = 119;
|
|
public static int RightLegColorID = 119;
|
|
public static string FaceID = "DefaultFace.rbxm";
|
|
public static string HeadID = "DefaultHead.rbxm";
|
|
public static string TorsoID = "DefaultTorso.rbxm";
|
|
public static string LeftArmID = "DefaultLArm.rbxm";
|
|
public static string RightArmID = "DefaultRArm.rbxm";
|
|
public static string LeftLegID = "DefaultLLeg.rbxm";
|
|
public static string RightLegID = "DefaultRLeg.rbxm";
|
|
public static string ColorMenu_HeadColor = "Color [A=255, R=245, G=205, B=47]";
|
|
public static string ColorMenu_TorsoColor = "Color [A=255, R=13, G=105, B=172]";
|
|
public static string ColorMenu_LeftArmColor = "Color [A=255, R=245, G=205, B=47]";
|
|
public static string ColorMenu_RightArmColor = "Color [A=255, R=245, G=205, B=47]";
|
|
public static string ColorMenu_LeftLegColor = "Color [A=255, R=164, G=189, B=71]";
|
|
public static string ColorMenu_RightLegColor = "Color [A=255, R=164, G=189, B=71]";
|
|
// recommended
|
|
public static int AdTheme = 2008;
|
|
}
|