Jump to content

Recommended Posts

Posted

Interlude Hopzone Vote Reward

Index: config/custom/L2JXtreme.ini
===================================================================
--- config/custom/L2JXtreme.ini	(revision 98)
+++ config/custom/L2JXtreme.ini	(working copy)
@@ -139,3 +139,15 @@
# ---------------------------------------
#Limit gm to enchant player item
GMOverEnchant = 0
+
+#------------------------------------#
+#          Vote System Config        #
+#------------------------------------#
+# Html Patch for Your Vote Site
+# Works with HopZone/HopZones/TopZone and other HopZone Like
+# Sample:
+VoteHtmlPatch = http://l2.hopzone.net/lineage2/moreinfo/RaidFightLowRatePvPServers/69262.html
+VoteReward1Count = 1000
+VoteReward2Count = 1000
+VoteReward1Id = 57
+VoteReward2Id = 57
Index: java/net/sf/l2j/gameserver/model/AutoVoteRewardHandler.java
===================================================================
--- java/net/sf/l2j/gameserver/model/AutoVoteRewardHandler.java	(revision 0)
+++ java/net/sf/l2j/gameserver/model/AutoVoteRewardHandler.java	(revision 0)
@@ -0,0 +1,181 @@
+/* This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ *
+ * http://www.gnu.org/copyleft/gpl.html
+ */
+ 
+package net.sf.l2j.gameserver.model;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import java.net.URL;
+import java.util.Collection;
+
+import net.sf.l2j.Config;
+import net.sf.l2j.gameserver.Announcements;
+import net.sf.l2j.gameserver.GmListTable;
+import net.sf.l2j.gameserver.ThreadPoolManager;
+import net.sf.l2j.gameserver.model.L2ItemInstance;
+import net.sf.l2j.gameserver.model.L2World;
+import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
+
+/**
+ *
+ * @author eXtr3me
+ *
+ */
+public class AutoVoteRewardHandler
+{
+	private int	lastVoteCount = 0;
+	private int	initialCheck = 60 * 1000;														
+	private int	delayForCheck = 300 * 1000;														
+	private int	votesForReward = 10;
+	private int	maxRewardStack = 5;
+	
+	private AutoVoteRewardHandler()
+	{
+		System.out.println("Vote Reward System activated.");
+		ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new AutoReward(), initialCheck, delayForCheck);
+	}
+	
+	private class AutoReward implements Runnable
+	{
+		public void run()
+		{
+			System.out.println("Vote Count Check.");
+			if (Config.VOTE_REWARD1_ID == 0 || Config.VOTE_REWARD1_COUNT == 0 || Config.VOTE_REWARD2_ID == 0 || Config.VOTE_REWARD2_COUNT == 0)
+			{
+				GmListTable.broadcastMessageToGMs("The rewards aren't Identified. Please take a look.");
+				return;
+			}
+			int newVoteCount = getVotes(Config.VOTE_HTML_PATCH);
+			System.out.println("newVoteCount:"+newVoteCount);
+			System.out.println("getLastVoteCount:"+getLastVoteCount());
+			if (newVoteCount != 0 && getLastVoteCount() != 0 && newVoteCount >= getLastVoteCount() + votesForReward)
+			{
+
+				Collection<L2PcInstance> pls = L2World.getInstance().getAllPlayers();
+				for (L2PcInstance player : pls)
+				{
+					if (player != null)
+					{
+						L2ItemInstance item1 = player.getInventory().getItemByItemId(Config.VOTE_REWARD1_ID);
+						if (item1 == null || item1.getCount() < maxRewardStack)
+						{
+							player.addItem("reward", Config.VOTE_REWARD1_ID, Config.VOTE_REWARD1_COUNT, player, true);
+						}
+						L2ItemInstance item2 = player.getInventory().getItemByItemId(Config.VOTE_REWARD2_ID);
+						if (item2 == null || item2.getCount() < maxRewardStack)
+						{
+							player.addItem("reward", Config.VOTE_REWARD2_ID, Config.VOTE_REWARD2_COUNT, player, true);
+						}
+					}
+				}	
+				setLastVoteCount(getLastVoteCount()+ votesForReward);
+			}
+			Announcements.getInstance().announceToAll("Our Current vote count is: " + newVoteCount);
+			Announcements.getInstance().announceToAll("The next reward will be given at " + (getLastVoteCount()+ votesForReward) + " Votes.");
+			if (getLastVoteCount() == 0)
+			{
+				setLastVoteCount(newVoteCount);
+			}
+		}
+	}
+	
+	private int getVotes(String urlString)
+	{
+		InputStreamReader isr = null;
+		BufferedReader in = null;
+		try
+		{
+			URL url = new URL(urlString);
+			isr = new InputStreamReader(url.openStream());
+			in = new BufferedReader(isr);
+			String inputLine;
+			int voteCount = 0;
+			while ((inputLine = in.readLine()) != null)
+			{
+				if (inputLine.contains("rank anonymous tooltip"))
+				{
+					int Sub = 12;
+					switch (inputLine.length())
+					{
+						case 116:
+							Sub = 13; 
+							break;
+						case 117:
+							Sub = 14; 
+							break;
+						case 118:
+							Sub = 15;
+							break;
+						case 119:
+							Sub = 16; 
+							break;
+					}
+					voteCount = Integer.valueOf(inputLine.split(">")[2].replace("</span", ""));

+					break;
+				}
+			}
+			return voteCount;
+		}
+		catch (IOException e)
+		{
+			e.printStackTrace();
+			return 0;
+		}
+		finally
+		{
+			try
+			{
+				in.close();
+			}
+			catch (IOException e)
+			{
+				
+			}
+			try
+			{
+				isr.close();
+			}
+			catch (IOException e)
+			{
+				
+			}
+		}
+	}
+	
+	private void setLastVoteCount(int voteCount)
+	{
+		lastVoteCount = voteCount;
+	}
+	
+	private int getLastVoteCount()
+	{
+		return lastVoteCount;
+	}
+	
+	public static AutoVoteRewardHandler getInstance()
+	{
+		return SingletonHolder._instance;
+	}
+	
+	@SuppressWarnings("synthetic-access")
+	private static class SingletonHolder
+	{
+		protected static final AutoVoteRewardHandler _instance = new AutoVoteRewardHandler();
+	}
+}
Index: java/net/sf/l2j/gameserver/GameServer.java
===================================================================
--- java/net/sf/l2j/gameserver/GameServer.java	(revision 104)
+++ java/net/sf/l2j/gameserver/GameServer.java	(working copy)
@@ -93,6 +93,7 @@
import net.sf.l2j.gameserver.instancemanager.SiegeManager;
import net.sf.l2j.gameserver.model.AutoChatHandler;
import net.sf.l2j.gameserver.model.AutoSpawnHandler;
+import net.sf.l2j.gameserver.model.AutoVoteRewardHandler;
import net.sf.l2j.gameserver.model.L2Manor;
import net.sf.l2j.gameserver.model.L2PetDataTable;
import net.sf.l2j.gameserver.model.L2World;
@@ -378,6 +379,7 @@
	 	SkillHandlerRegister.getInstance().loadHandlers(); 
	 	UserCommandHandlerRegister.getInstance().loadHandlers(); 
	 	VoiceCommandHandlerRegister.getInstance().loadHandlers();
+	 	AutoVoteRewardHandler.getInstance();

		if(Config.L2JMOD_ALLOW_WEDDING)
			CoupleManager.getInstance();
Index: java/net/sf/l2j/Config.java
===================================================================
--- java/net/sf/l2j/Config.java	(revision 99)
+++ java/net/sf/l2j/Config.java	(working copy)
@@ -111,6 +111,13 @@
	public static int CLIENT_PACKET_QUEUE_MAX_UNDERFLOWS_PER_MIN			= 1;	// default 1
	public static int CLIENT_PACKET_QUEUE_MAX_UNKNOWN_PER_MIN				= 5;	// default 5
     
+	//Vote Reward
+	public static String 		VOTE_HTML_PATCH;
+	public static int 			VOTE_REWARD1_ID;
+	public static int 			VOTE_REWARD2_ID;
+	public static int 			VOTE_REWARD1_COUNT;
+	public static int 			VOTE_REWARD2_COUNT;
+	
     /** Debug/release mode */
     public static boolean DEBUG;
     /** Enable/disable assertions */
@@ -1645,6 +1652,11 @@
                 OLYMPIAD_GIVE_HASTE_FIGHTERS = Boolean.parseBoolean(L2JXtremeSettings.getProperty("OlympiadGiveHasteFighters","true"));
                 OLYMPIAD_ACUMEN_LVL = Integer.parseInt(L2JXtremeSettings.getProperty("OlympiadAcumenLvl", "1"));
                 OLYMPIAD_HASTE_LVL = Integer.parseInt(L2JXtremeSettings.getProperty("OlympiadHasteLvl", "2"));
+                VOTE_HTML_PATCH = L2JXtremeSettings.getProperty("VoteHtmlPatch", "Null");
+				VOTE_REWARD1_COUNT = Integer.parseInt(L2JXtremeSettings.getProperty("VoteReward1Count", "1000"));
+				VOTE_REWARD2_COUNT = Integer.parseInt(L2JXtremeSettings.getProperty("VoteReward2Count", "1000"));
+				VOTE_REWARD1_ID = Integer.parseInt(L2JXtremeSettings.getProperty("VoteReward1Id", "57"));
+				VOTE_REWARD2_ID = Integer.parseInt(L2JXtremeSettings.getProperty("VoteReward2Id", "57"));
             }
             catch (Exception e)
             {

 

 

*UPDATE : Now Work With New Hopzone Website [Thx to Rizel]

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



  • Posts

    • You can add my discord: splicho
    • I'm looking for a good website developer, etc. I need to create a website from scratch for the Lineage 2 project. send your work and prices
    • OFFICIAL ANNOUNCEMENT – L2 NOOBWARS x BATTLENET  We are proud to officially announce a new chapter for Lineage2 Noobwars. From today, our server is officially powered by BattleNet Gaming Station. This partnership marks an important milestone for our community and represents a major step forward in the evolution of the server. Through this collaboration, we aim to deliver an even more stable, secure, and competitive environment for all players. • Improved infrastructure and server stability • Enhanced protection and security systems • New tools and features for better gameplay • Future events and exciting collaborations Our mission remains the same: to provide the best possible Lineage II experience while continuing to grow and improve the world of L2 Noobwars together with our community. We would like to thank every player who has supported the server since day one. Your trust and dedication are what drive us forward. • This is only the beginning. • The war continues. • The server evolves. • The best is yet to come. • Join our Discord: [ https://discord.gg/l2noobwars ] • Check our Website: [ https://l2noobwars.org/ ] • Check Bnet : [ https://battlenet.gr/ ]  Grand Opening Server: [03/04/2026 20:00 GMT+3] **Welcome to the next era of L2 Noobwars.
    • I need a high-quality interlude build! And good geodata. Guys, whoever offers their options, write the price right away! Otherwise, you offer something and don’t respond!
    • Reason: Drawer window offsets are preventing the window from opening properly. Solution:   Open XDAT editor. (for info, I'am using v1.3.8 ) Select your Interface.dat Program Tabs > windows > Search >  "QuestTreeDrawerWnd" Select in right panel From DefaultProperty > Change value of  "size_absolute_height" to "447" (original value "421") From Window Property  > Find "drawerDirection" (dont change) Change value of offsetX to 0 (original value "-2") Change value of offsetY to 0 (original value "26") File > Save.   Detail Info Window will now work properly. 🎉   For Skill Enchant Window Program Tabs > windows > Search >  "MagicSkillDrawerWnd" From Window Property  > Find "drawerDirection" (dont change) Change value of offsetX to 0 (original value "-1)   Tested on clear H5 System.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..