nevermind
This commit is contained in:
parent
6d4143fa7e
commit
2f95afbf6f
|
|
@ -131,9 +131,6 @@ public static class GlobalVars
|
||||||
public static readonly string ScriptGenName = "CSMPBoot";
|
public static readonly string ScriptGenName = "CSMPBoot";
|
||||||
public static SimpleHTTPServer WebServer = null;
|
public static SimpleHTTPServer WebServer = null;
|
||||||
public static bool IsWebServerOn = false;
|
public static bool IsWebServerOn = false;
|
||||||
//config name
|
|
||||||
public static readonly string ConfigName = "config.ini";
|
|
||||||
public static readonly string ConfigNameCustomization = "character_" + PlayerName + ".ini";
|
|
||||||
//vars for loader
|
//vars for loader
|
||||||
public static bool ReadyToLaunch = false;
|
public static bool ReadyToLaunch = false;
|
||||||
//server settings.
|
//server settings.
|
||||||
|
|
@ -148,8 +145,11 @@ public static class GlobalVars
|
||||||
public static int UserID = 0;
|
public static int UserID = 0;
|
||||||
public static string PlayerName = "Player";
|
public static string PlayerName = "Player";
|
||||||
public static string PlayerTripcode = "";
|
public static string PlayerTripcode = "";
|
||||||
//launcher settings.
|
//config name
|
||||||
public static bool CloseOnLaunch = false;
|
public static readonly string ConfigName = "config.ini";
|
||||||
|
public static string ConfigNameCustomization = "config_customization.ini";
|
||||||
|
//launcher settings.
|
||||||
|
public static bool CloseOnLaunch = false;
|
||||||
public static bool LocalPlayMode = false;
|
public static bool LocalPlayMode = false;
|
||||||
//client shit
|
//client shit
|
||||||
public static string SelectedClient = "";
|
public static string SelectedClient = "";
|
||||||
|
|
|
||||||
|
|
@ -106,8 +106,8 @@ public class LauncherFuncs
|
||||||
}
|
}
|
||||||
|
|
||||||
GlobalVars.PlayerName = Decryptline3;
|
GlobalVars.PlayerName = Decryptline3;
|
||||||
|
|
||||||
GlobalVars.SelectedClient = Decryptline4;
|
GlobalVars.SelectedClient = Decryptline4;
|
||||||
|
|
||||||
GlobalVars.Map = Decryptline5;
|
GlobalVars.Map = Decryptline5;
|
||||||
|
|
||||||
|
|
@ -534,7 +534,7 @@ public class LauncherFuncs
|
||||||
GlobalVars.Custom_Head_Offline + "','" +
|
GlobalVars.Custom_Head_Offline + "','" +
|
||||||
GlobalVars.Custom_Icon_Offline + "','" +
|
GlobalVars.Custom_Icon_Offline + "','" +
|
||||||
GlobalVars.Custom_Extra + "'";
|
GlobalVars.Custom_Extra + "'";
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void ReadClientValues(string clientpath)
|
public static void ReadClientValues(string clientpath)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue