add MiniMessages and small code changes
This commit is contained in:
@@ -11,24 +11,6 @@ import java.io.IOException;
|
||||
|
||||
public class ConfigCreate {
|
||||
|
||||
private static Boolean UpdateCheckOnJoin = true;
|
||||
private static Integer UpdateCheckTimeInterval = 60;
|
||||
private static Boolean Debug = false;
|
||||
private static String language = "english";
|
||||
|
||||
|
||||
private static Boolean mySQL = false;
|
||||
private static String Storage = "YML";
|
||||
private static String ip = "localhost";
|
||||
private static Integer port = 3306;
|
||||
private static String database = "database";
|
||||
private static String user = "root";
|
||||
private static String password = "password";
|
||||
private static Boolean SSL = false;
|
||||
|
||||
private static Boolean Bungee = false;
|
||||
private static String thisServer = "server";
|
||||
|
||||
public static void configCreate() {
|
||||
Long long_ = Long.valueOf(System.currentTimeMillis());
|
||||
if (new File(T2CodeMain.getPath(), "config.yml").exists()){
|
||||
@@ -39,24 +21,15 @@ public class ConfigCreate {
|
||||
File config = new File(T2CodeMain.getPath(), "config.yml");
|
||||
YamlConfiguration yamlConfiguration = YamlConfiguration.loadConfiguration(config);
|
||||
|
||||
Config.set("Plugin.UpdateCheck.OnJoin", UpdateCheckOnJoin, yamlConfiguration);
|
||||
Config.set("Plugin.UpdateCheck.TimeInterval", UpdateCheckTimeInterval, yamlConfiguration);
|
||||
Config.set("Plugin.language", language, yamlConfiguration);
|
||||
Config.set("Plugin.UpdateCheck.OnJoin", true, yamlConfiguration);
|
||||
Config.set("Plugin.UpdateCheck.TimeInterval", 60, yamlConfiguration);
|
||||
Config.set("Plugin.language", "english", yamlConfiguration);
|
||||
|
||||
Config.set("BungeeCord.Enable", Bungee, yamlConfiguration);
|
||||
Config.set("BungeeCord.ThisServer", thisServer, yamlConfiguration);
|
||||
Config.set("BungeeCord.Enable", false, yamlConfiguration);
|
||||
Config.set("BungeeCord.ThisServer", "server", yamlConfiguration);
|
||||
Config.set("Player.Inventories.CloseByServerStop", true, yamlConfiguration);
|
||||
|
||||
// Config.set("Storage.MySQL.Enable", mySQL, yamlConfiguration);
|
||||
// Config.set("Storage.Type", Storage, yamlConfiguration);
|
||||
// Config.set("Storage.MySQL.IP", ip, yamlConfiguration);
|
||||
// Config.set("Storage.MySQL.Port", port, yamlConfiguration);
|
||||
// Config.set("Storage.MySQL.Database", database, yamlConfiguration);
|
||||
// Config.set("Storage.MySQL.User", user, yamlConfiguration);
|
||||
// Config.set("Storage.MySQL.Password", password, yamlConfiguration);
|
||||
// Config.set("Storage.MySQL.SSL", SSL, yamlConfiguration);
|
||||
|
||||
|
||||
Config.set("PlayerMessage.MiniMessage", false,yamlConfiguration);
|
||||
|
||||
try {
|
||||
yamlConfiguration.save(config);
|
||||
|
@@ -8,12 +8,13 @@ import java.io.File;
|
||||
public class SelectLibConfig {
|
||||
|
||||
|
||||
public static Boolean UpdateCheckOnJoin;
|
||||
public static Boolean t2cTestDevelopment;
|
||||
public static Integer UpdateCheckTimeInterval;
|
||||
public static Boolean Debug;
|
||||
public static String language;
|
||||
public static Boolean InventoriesCloseByServerStop;
|
||||
private static Boolean UpdateCheckOnJoin;
|
||||
private static Boolean t2cTestDevelopment;
|
||||
private static Integer UpdateCheckTimeInterval;
|
||||
private static Boolean Debug;
|
||||
private static String language;
|
||||
private static Boolean InventoriesCloseByServerStop;
|
||||
private static Boolean miniMessage;
|
||||
|
||||
public static void onSelect() {
|
||||
File config = new File(T2CodeMain.getPath(), "config.yml");
|
||||
@@ -25,5 +26,34 @@ public class SelectLibConfig {
|
||||
Debug = yamlConfiguration.getBoolean("Plugin.Debug");
|
||||
language = yamlConfiguration.getString("Plugin.language");
|
||||
InventoriesCloseByServerStop = yamlConfiguration.getBoolean("Player.Inventories.CloseByServerStop");
|
||||
miniMessage = yamlConfiguration.getBoolean("PlayerMessage.MiniMessage");
|
||||
}
|
||||
|
||||
public static Boolean getUpdateCheckOnJoin() {
|
||||
return UpdateCheckOnJoin;
|
||||
}
|
||||
|
||||
public static Boolean getT2cTestDevelopment() {
|
||||
return t2cTestDevelopment;
|
||||
}
|
||||
|
||||
public static Integer getUpdateCheckTimeInterval() {
|
||||
return UpdateCheckTimeInterval;
|
||||
}
|
||||
|
||||
public static Boolean getDebug() {
|
||||
return Debug;
|
||||
}
|
||||
|
||||
public static String getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
public static Boolean getInventoriesCloseByServerStop() {
|
||||
return InventoriesCloseByServerStop;
|
||||
}
|
||||
|
||||
public static Boolean getMiniMessage() {
|
||||
return miniMessage;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user