Posted May 25, 20187 yr Hey. I am working on a mod and I need to make up to 24 web requests on execution of a command. It works fine, but while doing the requests, the game gets frozen, until its done. Is there any way of doing it in the background or so? This is the code. NetHandlerPlayClient connection = Minecraft.getMinecraft().getNetHandler(); List<NetworkPlayerInfo> playerInfo = new ArrayList(connection.getPlayerInfoMap()); List<String> playerList = Lists.<String>newArrayList(); List<Integer> pointsList = Lists.<Integer>newArrayList(); for (int i = 0; i < playerInfo.size(); ++i) { if (i < playerInfo.size()) { playerList.add(playerInfo.get(i).getGameProfile().getName()); } } for (int i = 0; i < playerList.size(); ++i) { try { Document doc = Jsoup.connect("https://hivemc.com/player/" + playerList.get(i)).userAgent("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36").get(); Elements temp = doc.select("li"); for (Element j : temp) { if (j.getElementsByTag("p").text().contains("Survival Games 2")) { pointsList.add(Integer.parseInt((j.getElementsByTag("span").first().text()))); } } } catch (IOException e) { e.printStackTrace(); } } for (int i = 0; i < playerList.size(); ++i) { points.add(new PointsEntity(playerList.get(i), pointsList.get(i))); } Collections.sort(points, Collections.reverseOrder()); Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(EnumChatFormatting.GRAY + "------------- " + EnumChatFormatting.AQUA + "SG2.0 Drops " + EnumChatFormatting.GRAY + "-------------")); for (PointsEntity p : points) { String message = p.name + " | " + p.points + " points | Drops " + Math.round(p.points * 0.025); Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(message)); } Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(EnumChatFormatting.GRAY + "---------------------------------------")); points.clear(); Edited May 25, 20187 yr by fallenclient
May 25, 20187 yr It's called "threads." And treads are dangerous things. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.