Jump to content
  • 0

Question

Posted (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 by l2viserion
help tag

4 answers to this question

Recommended Posts

  • 0
Posted (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 by Bru7aLMike
  • 0
Posted

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock