Jump to content

Recommended Posts

Posted

Topzone/L2 network doesn't work! Hopzone work ! PD: L2JFROZEN!

http://www.maxcheaters.com/topic/201882-vote-manager-npc-v3/page-4

here is the fix for topzone and works fine network too

  • 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
  • 2 weeks later...

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
Reply to this topic...

×   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...