Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

fallenclient

Members
  • Joined

  • Last visited

Everything posted by fallenclient

  1. 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();

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.