Jump to content
  • 0

Vote Manager


cyta5

Question

Hello guys i have one vote manager for l2jfrozen and stopped to give reward for topzone maybe someone can tell me what happen and how i can fix it ?

Topzone Url = https://l2topzone.com/totalvotes.php?id=6150

 

public static int getTopZoneVotes()
{
	int votes = 0;
	boolean lineFound = false;
	try
	{
		URL url = new URL(Config.VOTES_SITE_TOPZONE_URL);
		InputStream is = url.openStream();
		try (
			BufferedReader br = new BufferedReader(new InputStreamReader(is)))
		{
			String line;
			while ((line = br.readLine()) != null)
			{
				if (line.contains("Votes:<br>"))
				{
					votes = Integer.parseInt(line.split("<br>")[1].split("<")[0]);
					lineFound = true;
				}
				
			}
		}
	}
	catch (IOException e)
	{
		System.out.println("TOPZONE is offline. We will check reward as it will be online again.");
		e.printStackTrace();
	}
	if (!lineFound)
		System.out.println("The line wasn't found in TopZone, check site in case they updated.");
	return votes;
}

 

Edited by cyta5
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
9 minutes ago, cyta5 said:

Hello guys i have one vote manager for l2jfrozen and stopped to give reward for topzone maybe someone can tell me what happen and how i can fix it ?

Topzone Url = https://l2topzone.com/totalvotes.php?id=6150

 


public static int getTopZoneVotes()
{
	int votes = 0;
	boolean lineFound = false;
	try
	{
		URL url = new URL(Config.VOTES_SITE_TOPZONE_URL);
		InputStream is = url.openStream();
		try (
			BufferedReader br = new BufferedReader(new InputStreamReader(is)))
		{
			String line;
			while ((line = br.readLine()) != null)
			{
				if (line.contains("Votes:<br>"))
				{
					votes = Integer.parseInt(line.split("<br>")[1].split("<")[0]);
					lineFound = true;
				}
				
			}
		}
	}
	catch (IOException e)
	{
		System.out.println("TOPZONE is offline. We will check reward as it will be online again.");
		e.printStackTrace();
	}
	if (!lineFound)
		System.out.println("The line wasn't found in TopZone, check site in case they updated.");
	return votes;
}

 

https://l2topzone.com/totalvotes.php?id=6150  this url is no longer working.

Link to comment
Share on other sites

  • 0
19 minutes ago, TGSLineage2 said:

https://l2topzone.com/totalvotes.php?id=6150  this url is no longer working.

 

what is the correct url?

and i think is want some changes at the code :/

Edited by cyta5
Link to comment
Share on other sites

  • 0
51 minutes ago, cyta5 said:

 

what is the correct url?

and i think is want some changes at the code :/

For total votes count should be
https://api.l2topzone.com/v1/server_here-type-your-api-key/getServerData
and something like that is his answer
{"ok": true,"result": {"totalVotes": "0","serverRank": null}} 

 

I think you are using a very old code and that link no longer exists on that site

Edited by TGSLineage2
Link to comment
Share on other sites

  • 0
23 minutes ago, TGSLineage2 said:

For total votes count should be
https://api.l2topzone.com/v1/server_here-type-your-api-key/getServerData
and something like that is his answer
{"ok": true,"result": {"totalVotes": "0","serverRank": null}} 

 

I think you are using a very old code and that link no longer exists on that site

 

i use the link with my api and i got that messege

Forbiden

Please contact l2topzone.com administrator to get access

 

Link to comment
Share on other sites

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...