l2viserion Posted September 12, 2023 Posted September 12, 2023 (edited) There are new changes in hopzone but I'm unable to fix it, not sure what I do wrong, can anybody help with below code to read the current votes? protected static int getVotes() { InputStreamReader isr = null; BufferedReader br = null; try { if(!hopzoneUrl.endsWith(".html")) hopzoneUrl+=".html"; URLConnection con = new URL(hopzoneUrl).openConnection(); con.addRequestProperty("User-Agent", "Mozilla/5.0"); isr = new InputStreamReader(con.getInputStream()); br = new BufferedReader(isr); String line; while ((line = br.readLine()) != null) { if (line.contains(":server-votes")||line.contains(":server-votes=")||line.contains("server-votes")||line.contains("server-votes=")||line.contains(":server-votes=\"")) { int votes = Integer.valueOf(line.split("\"")[1].split("\"")[0].split("\"")[2]); //Hopzone line source code: // :server-votes="228" return votes; } } br.close(); isr.close(); } catch (Exception e) { System.out.println("[VoteRewardManager]: Problem occured while getting Hopzone votes. Error Trace: " + e.getMessage()); } return -1; } Edited September 12, 2023 by l2viserion help tag Quote
0 Salty Mike Posted September 12, 2023 Posted September 12, 2023 (edited) 2 hours ago, l2viserion said: There are new changes in hopzone but I'm unable to fix it, not sure what I do wrong, can anybody help with below code to read the current votes? protected static int getVotes() { InputStreamReader isr = null; BufferedReader br = null; try { if(!hopzoneUrl.endsWith(".html")) hopzoneUrl+=".html"; URLConnection con = new URL(hopzoneUrl).openConnection(); con.addRequestProperty("User-Agent", "Mozilla/5.0"); isr = new InputStreamReader(con.getInputStream()); br = new BufferedReader(isr); String line; while ((line = br.readLine()) != null) { if (line.contains(":server-votes")||line.contains(":server-votes=")||line.contains("server-votes")||line.contains("server-votes=")||line.contains(":server-votes=\"")) { int votes = Integer.valueOf(line.split("\"")[1].split("\"")[0].split("\"")[2]); //Hopzone line source code: // :server-votes="228" return votes; } } br.close(); isr.close(); } catch (Exception e) { System.out.println("[VoteRewardManager]: Problem occured while getting Hopzone votes. Error Trace: " + e.getMessage()); } return -1; } 1. Replace the int votes expression with this: int votes = Integer.parseInt(line.split("\"")[1]); 2. expand your IF(line.contains(...)) with an additional condition - || line.contains("vote-count") 3. Finally, make sure that you exit the loop on the first match, just in case. Edited September 12, 2023 by Bru7aLMike Quote
0 l2viserion Posted September 12, 2023 Author Posted September 12, 2023 Hello mate, Unfortunately the same, cannot see votes count, changed the links into tops.ini as well I managed in the past to fix each time but now is not working. Quote
0 LoVe+ Posted September 15, 2023 Posted September 15, 2023 is there any performance or any reason they did this ? Quote
0 l2viserion Posted September 15, 2023 Author Posted September 15, 2023 New owner from RU/UA I believe, they remove API too from account control panel, is there any other "User-Agent" I can change? I'm sure I did all codes ok, even with OPEN AI generated code is not working, does not read the votes.. Any help will be super Quote
Question
l2viserion
There are new changes in hopzone but I'm unable to fix it, not sure what I do wrong, can anybody help with below code to read the current votes?
protected static int getVotes()
{
InputStreamReader isr = null;
BufferedReader br = null;
try
{
if(!hopzoneUrl.endsWith(".html"))
hopzoneUrl+=".html";
URLConnection con = new URL(hopzoneUrl).openConnection();
con.addRequestProperty("User-Agent", "Mozilla/5.0");
isr = new InputStreamReader(con.getInputStream());
br = new BufferedReader(isr);
String line;
while ((line = br.readLine()) != null)
{
if (line.contains(":server-votes")||line.contains(":server-votes=")||line.contains("server-votes")||line.contains("server-votes=")||line.contains(":server-votes=\""))
{
int votes = Integer.valueOf(line.split("\"")[1].split("\"")[0].split("\"")[2]);
//Hopzone line source code:
// :server-votes="228"
return votes;
}
}
br.close();
Edited by l2viserionisr.close();
}
catch (Exception e)
{
System.out.println("[VoteRewardManager]: Problem occured while getting Hopzone votes. Error Trace: " + e.getMessage());
}
return -1;
}
help tag
4 answers to this question
Recommended Posts
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.