Jump to content

Recommended Posts

Posted
  On 1/7/2017 at 1:29 AM, Rahab said:

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
  On 10/31/2016 at 2:27 PM, Reborn12 said:

 

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
  On 3/21/2017 at 7:40 PM, Reborn12 said:

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
  On 4/4/2017 at 2:12 AM, badangel3s said:

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

Yes you need one npc with type L2VoteManager

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