49 lines
2.1 KiB
C#
49 lines
2.1 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 = "";
|
|
//server settings.
|
|
public static string Map = "Baseplate.rbxl";
|
|
public static int RobloxPort = 53640;
|
|
public static int DefaultRobloxPort = 53640;
|
|
public static int PlayerLimit = 12;
|
|
//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;
|
|
//clientinfocreator
|
|
public static bool ClientCreator_UsesPlayerName = false;
|
|
public static bool ClientCreator_UsesID = false;
|
|
public static bool ClientCreator_LoadsAssetsOnline = false;
|
|
public static string ClientCreator_SelectedClientDesc = "";
|
|
//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 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;
|
|
//color menu.
|
|
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]";
|
|
public static bool AdminMode = false;
|
|
} |