T2C-CommandGUI/CommandGUI V2/src/main/java/net/t2code/commandguiv2/Util.java

41 lines
808 B
Java
Raw Normal View History

2022-11-01 12:20:53 +00:00
package net.t2code.commandguiv2;
2021-12-21 04:57:29 +00:00
public class Util {
2022-11-01 12:20:53 +00:00
public static String getInfoText() {
return "";
}
2022-01-01 02:40:54 +00:00
public static String getRequiredT2CodeLibVersion() {
return "16.2";
2022-01-01 02:40:54 +00:00
}
public static String getPrefix() {
2022-11-14 13:21:58 +00:00
return "§8[§4C§9GUI§8]";
2022-01-01 02:40:54 +00:00
}
public static Integer getSpigotID() {
2022-11-14 13:21:58 +00:00
return 90671;
2022-01-01 02:40:54 +00:00
}
2022-11-15 14:31:26 +00:00
public static String getGit() {
return "JaTiTV/T2C-CommandGUI";
}
2022-01-01 02:40:54 +00:00
public static Integer getBstatsID() {
2022-11-14 13:21:58 +00:00
return 10840;
2022-01-01 02:40:54 +00:00
}
public static String getSpigot() {
2022-11-14 13:21:58 +00:00
return "https://www.spigotmc.org/resources/" + getSpigotID();
2022-01-01 02:40:54 +00:00
}
public static String getDiscord() {
2022-08-10 13:27:27 +00:00
return net.t2code.t2codelib.Util.getDiscord();
2022-01-01 02:40:54 +00:00
}
2.7.0 Snapshot 1 In this update some functions were rewritten, changed and added. Also some minor bugs have been fixed. The GUIs files have been split into GUI files and function files, this provides more clarity in the complete plugin structure and offers the possibility to access a function from multiple GUIs. Thus, for example, you can create a back button as a function and open it from 3 GUIs, the item, the function can also be in different places, because the slot is set in the GUI file. In the GUI files is thus specified on which slot which function should be located. In addition, the permission for See and for Use of the functions can now be set individually in the GUI Config. In the functions also 2 new functions were added, with which players can switch permissions on and off and an option to switch the UseItem on and off. Placeholders have been added. This update includes a converter that builds the new structure from the old config structure. Your options should be taken over. For security reasons your old GUI files are saved under the path 'plugins/CommandGUI/OldConfig/GUIs/Version4'. Bug fixes: - Fixed a bug that prevented GUIs from opening. - The OpenGUI option, the command '/cgui <guiname>' did not work. The GUI that was set as default GUI in UseItem was always opened. This was fixed New features: - Placeholders - %commandgui_useitem% - Shows if you have activated or deactivated the UseItem (in color, customizable in config.yml) - %commandgui_useitem_boolean% - Shows if you have enabled or disabled the UseItem - %commandgui_useitem_slot% - shows on which slot you have set the UseItem - ToggleUseItem as new option for slots - TogglePermission as new option for slots Changes: - The config structure has been revised.
2022-04-19 05:08:33 +00:00
public static Integer getConfigVersion() {
return 6;
2.7.0 Snapshot 1 In this update some functions were rewritten, changed and added. Also some minor bugs have been fixed. The GUIs files have been split into GUI files and function files, this provides more clarity in the complete plugin structure and offers the possibility to access a function from multiple GUIs. Thus, for example, you can create a back button as a function and open it from 3 GUIs, the item, the function can also be in different places, because the slot is set in the GUI file. In the GUI files is thus specified on which slot which function should be located. In addition, the permission for See and for Use of the functions can now be set individually in the GUI Config. In the functions also 2 new functions were added, with which players can switch permissions on and off and an option to switch the UseItem on and off. Placeholders have been added. This update includes a converter that builds the new structure from the old config structure. Your options should be taken over. For security reasons your old GUI files are saved under the path 'plugins/CommandGUI/OldConfig/GUIs/Version4'. Bug fixes: - Fixed a bug that prevented GUIs from opening. - The OpenGUI option, the command '/cgui <guiname>' did not work. The GUI that was set as default GUI in UseItem was always opened. This was fixed New features: - Placeholders - %commandgui_useitem% - Shows if you have activated or deactivated the UseItem (in color, customizable in config.yml) - %commandgui_useitem_boolean% - Shows if you have enabled or disabled the UseItem - %commandgui_useitem_slot% - shows on which slot you have set the UseItem - ToggleUseItem as new option for slots - TogglePermission as new option for slots Changes: - The config structure has been revised.
2022-04-19 05:08:33 +00:00
}
2021-12-21 04:57:29 +00:00
}