Jump to content

Recommended Posts

  • 1 month later...
Posted

 

i use this on my server and works like i want...all works fine 

here is the fix for topzone 

use this link but change id https://l2topzone.com/tv.php?id=12609

public static int getTopZoneVotes()
	{
		int votes = -1;
		try
		{
			final URL obj = new URL(Config.VOTES_SITE_TOPZONE_URL);
			final HttpURLConnection con = (HttpURLConnection) obj.openConnection();
			con.addRequestProperty("User-Agent", "L2TopZone");
			con.setConnectTimeout(5000);
			
			final int responseCode = con.getResponseCode();
			if (responseCode == 200)
			{
				try (BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream())))
				{
					String inputLine;
					while ((inputLine = in.readLine()) != null)
					{
						votes = Integer.valueOf(inputLine);
						break;
					}
				}
			}
		}
		catch (Exception e)
		{
			e.printStackTrace();
			System.out.println("TOPZONE is offline. We will check reward as it will be online again.");
		}
		
		return votes;
	}

 

your fix work fine!

 

Great work, Keep up share!! 8) 

  • 1 month later...
Posted (edited)
private int _teleMode;
private boolean _isCrystallizing;
private boolean _isCrafting;
+private boolean _isVoting;


public List<Integer> getSelectedBlocksList()
	{
		return _selectedBlocksList;
	}
+	
+	public final boolean isVoting()
+	{
+		return _isVoting;
+	}
+	
+	public final void setIsVoting(boolean value)
+	{
+		_isVoting = value;
+	}
+

How to add this in L2jFrozen 1132 ? I did not find these lines in L2PCInstance.java.

Edited by badangel3s
Posted (edited)

Anywhere, out of any method. At the end of the file for example.

Edited by SweeTs
Posted (edited)
 

I added the correct code, I did not have any errors, but nothing happens when I click the imagem

Edited by nortim
Posted

You have to click in symbol plus not in icon

 
Yes, I did was just that, I'm sorry for expressing myself wrong, I'm Brazilian and I hardly speak English.
  • 2 weeks later...
Posted

What is the NPC ID? I need create one? I did not understand how it works.

Yes you need one npc with type L2VoteManager

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