fixed the shit code

This commit is contained in:
Fangoboyo 2022-06-10 11:48:38 -07:00
parent 7d7a9ebcc7
commit 8f237ff271

View File

@ -1,32 +1,46 @@
package tech.nully.PluginInstaller; package tech.nully.PluginInstaller;
import org.bukkit.ChatColor;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
import java.net.*; import java.net.*;
import java.io.*; import java.io.*;
import java.util.List;
public class PluginList { public class PluginList {
private static String[] AlphaPluginList = new String[]{"AntiSwear", "BitchFilter", "CoreProtect", "CrackShot", "DupePatch", "DynMap", "Essentials",
"EssenttialsAntiBuild", "EssentialsChat", "EssentialsProtect", "EssentialsSpawn", "Factions", "MCore", "MyWarp",};
public static void SendPG1ToSender(CommandSender sender) { public static void SendPG1ToSender(CommandSender sender) {
try { sender.sendMessage(ChatColor.GREEN + "Here is a list of available plugins in the database:");
URL files = URI.create("https://raw.githubusercontent.com/darverdevs/PluginInstallerRepo/main/names.txt").toURL(); int SecondCollumn = 8;
URLConnection file = files.openConnection(); for (int i = 1; i < 8; i++) {
BufferedReader best = new BufferedReader(new InputStreamReader(file.getInputStream())); sender.sendMessage(i+". "+ AlphaPluginList[i-1] + "" +SecondCollumn + ". " + AlphaPluginList[SecondCollumn-1]);
while ((best.readLine() != null)) { SecondCollumn++;
sender.sendMessage(best.readLine());
} }
best.close(); sender.sendMessage(" Page 1 of 12");
sender.sendMessage("Note: You do not need to have proper");
sender.sendMessage("capitalization when using the install command");
} }
catch(IOException io) {
System.out.println(io.getMessage());
}
/*sender.sendMessage("1. AntiSwear 8. AntiSwear");
sender.sendMessage("2. BitchFilter 9. ProtocolLib");
sender.sendMessage("3. CoreProtect 10. MCore");
sender.sendMessage("4. CrackShot 11. ");
sender.sendMessage("5. DupePatch 12. ");
sender.sendMessage("6. DynMap 13. ");
sender.sendMessage("7. BitchFilter 14. ");*/
public static void SendPG2ToSender(CommandSender sender) {
sender.sendMessage(ChatColor.GREEN + "Here is a list of available plugins in the database:");
int SecondCollumn = 22;
for (int i = 15; i < 22; i++) {
String Col1 = "";
String Col2 = "";
if (AlphaPluginList[i-1] != null) {
Col1 = AlphaPluginList[i-1];
}
if (AlphaPluginList[SecondCollumn-1] != null) {
Col2 = AlphaPluginList[SecondCollumn-1];
}
sender.sendMessage(i+". "+ Col1 + "" + SecondCollumn + ". " + Col2);
SecondCollumn++;
}
sender.sendMessage(" Page 2 of 12");
sender.sendMessage("Note: You do not need to have proper");
sender.sendMessage("capitalization when using the install command");
} }
} }