2022-10-25 13:03:07 +00:00
|
|
|
package net.t2code.t2codelib;
|
|
|
|
|
2022-12-24 18:05:18 +00:00
|
|
|
import lombok.Getter;
|
|
|
|
|
2022-10-25 13:03:07 +00:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.List;
|
2022-12-24 18:05:18 +00:00
|
|
|
import java.util.UUID;
|
2022-10-25 13:03:07 +00:00
|
|
|
|
|
|
|
public class Util {
|
|
|
|
|
2022-12-24 18:05:18 +00:00
|
|
|
@Getter
|
|
|
|
private static final UUID serverUUID = UUID.randomUUID();
|
|
|
|
|
|
|
|
|
2022-10-25 13:03:07 +00:00
|
|
|
public static String getInfoText() {
|
2022-11-03 06:57:53 +00:00
|
|
|
return "";
|
2022-10-25 13:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String getPrefix() {
|
2022-11-15 01:17:26 +00:00
|
|
|
return "<dark_gray>[<dark_red>T2Code</dark_red><dark_purple>Lib</dark_purple>]</dark_gray>";
|
2022-10-25 13:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static Integer getSpigotID() {
|
|
|
|
return 96388;
|
|
|
|
}
|
2022-11-14 00:06:44 +00:00
|
|
|
|
2022-11-10 13:00:59 +00:00
|
|
|
public static String getGit() {
|
2022-11-14 21:37:36 +00:00
|
|
|
return "JaTiTV/T2CodeLib";
|
2022-11-10 13:00:59 +00:00
|
|
|
}
|
2022-10-25 13:03:07 +00:00
|
|
|
|
|
|
|
public static Integer getBstatsID() {
|
|
|
|
return 12518;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getSpigot() {
|
|
|
|
return "https://www.spigotmc.org/resources/" + getSpigotID();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getDiscord() {
|
|
|
|
return "http://dc.t2code.net";
|
|
|
|
}
|
|
|
|
|
|
|
|
public static List<String> getT2cPlugins() {
|
|
|
|
return Arrays.asList(
|
2022-11-14 17:45:54 +00:00
|
|
|
"T2CodeLib",
|
2022-10-25 13:03:07 +00:00
|
|
|
"T2C-LuckyBox",
|
|
|
|
"WonderBagShop",
|
|
|
|
"CommandGUI",
|
2022-11-14 00:06:44 +00:00
|
|
|
// "T2C-OPSecurity",
|
2022-10-25 13:03:07 +00:00
|
|
|
"OPSecurity",
|
|
|
|
"PaPiTest",
|
|
|
|
"T2C-Alias",
|
|
|
|
"T2C-AutoResponse",
|
|
|
|
"LoreEditor",
|
|
|
|
"Booster",
|
|
|
|
"AntiMapCopy",
|
|
|
|
"AntiCopy"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|