Jump to content

Recommended Posts

Posted

Hello this code was taken from extreme i made it for interlude and putted some configs it has been tested on a live server everything works fine!

 

Index: java/com/l2jmoxos12/gameserver/instancemanager/AutoVoteRewardHandler.java
===================================================================
--- java/com/l2jmoxos12/gameserver/instancemanager/AutoVoteRewardHandler.java	(revision 0)
+++ java/com/l2jmoxos12/gameserver/instancemanager/AutoVoteRewardHandler.java	(revision 0)
@@ -0,0 +1,162 @@
+package com.l2jmoxos12.gameserver.instancemanager;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import java.net.URL;
+import java.sql.Connection;
+import java.sql.PreparedStatement;
+import java.sql.ResultSet;
+import java.sql.SQLException;
+
+import com.l2jmoxos12.Config;
+import com.l2jmoxos12.L2DatabaseFactory;
+import com.l2jmoxos12.gameserver.Announcements;
+import com.l2jmoxos12.gameserver.ThreadPoolManager;
+import com.l2jmoxos12.gameserver.model.L2ItemInstance;
+import com.l2jmoxos12.gameserver.model.L2World;
+import com.l2jmoxos12.gameserver.model.actor.instance.L2PcInstance;
+
+public class AutoVoteRewardHandler
+{
+	private final String HOPZONE = "Config.HopZone_ID";
+	// 60 * 1000(1000milliseconds = 1 second) = 60seconds
+	private final int initialCheck = 60 * 1000;
+	// 1800 * 1000(1000milliseconds = 1 second) = 1800seconds = 30minutes
+	private final int delayForCheck = Config.Delay_for_check * 1000;
+	private final int[] itemId = {Config.Item_ID};
+	private final int[] itemCount = {Config.Item_Count};
+	private final int[] maxStack = {Config.Max_Stack};
+	private final int votesRequiredForReward = Config.Votes_Required;
+	// do not change
+	private int lastVoteCount = 0;
+	
+	private AutoVoteRewardHandler()
+	{
+		System.out.println("Vote Reward System Initiated.");
+		ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new AutoReward(), initialCheck, delayForCheck);
+	}
+	
+	private class AutoReward implements Runnable
+	{
+		public void run()
+		{
+			int votes = getVotes();
+			System.out.println("Server Votes: " + votes);
+			if (votes != 0 && getLastVoteCount() != 0 && votes >= getLastVoteCount() + votesRequiredForReward)
+			{
+				Connection con = null;
+				try
+				{
+					con = L2DatabaseFactory.getInstance().getConnection();
+					PreparedStatement statement = con.prepareStatement("" +
+							"SELECT" +
+							"	c.charId," +
+							"	c.char_name" +
+							"FROM" +
+							"	characters AS c" +
+							"LEFT JOIN" +
+							"	accounts AS a" +
+							"ON" +
+							"	c.account_name = a.login" +
+							"WHERE" +
+							"	c.online > 0" +
+							"GROUP BY" +
+							"	a.lastIP" +
+							"ORDER BY" +
+							"	c.level" +
+							"DESC");
+					ResultSet rset = statement.executeQuery();
+					L2PcInstance player = null;
+					L2ItemInstance item = null;
+					while (rset.next())
+					{
+						player = L2World.getInstance().getPlayer("charId");
+						if (player != null && !player.getClient().isDetached())
+						{
+							for (int i = 0; i < itemId.length; i++)
+							{
+								item = player.getInventory().getItemByItemId(itemId[i]);
+								if (item == null || item.getCount() < maxStack[i])
+									player.addItem("reward", itemId[i], itemCount[i], player, true);
+							}
+						}
+					}
+					statement.close();
+				}
+				catch (SQLException e)
+				{
+					e.printStackTrace();
+				}
+				finally
+				{
+                           try { if (con != null) con.close(); } catch (SQLException e) { e.printStackTrace(); }
+				}
+				
+				setLastVoteCount(getLastVoteCount() + votesRequiredForReward);
+			}
+			Announcements.getInstance().announceToAll("Server Votes: " + votes + " | Next Reward on " + (getLastVoteCount() + votesRequiredForReward) + " Votes.");
+			if (getLastVoteCount() == 0)
+				setLastVoteCount(votes);
+		}
+	}
+	
+	private int getVotes()
+	{
+		URL url = null;
+		InputStreamReader isr = null;
+		BufferedReader in = null;
+		try
+		{
+			url = new URL(HOPZONE);
+			isr = new InputStreamReader(url.openStream());
+			in = new BufferedReader(isr);
+			String inputLine;
+			while ((inputLine = in.readLine()) != null)
+			{
+				if (inputLine.contains("moreinfo_total_rank_text"))
+					return Integer.valueOf(inputLine.split(">")[2].replace("</div", ""));
+			}
+		}
+		catch (IOException e)
+		{
+			e.printStackTrace();
+		}
+		finally
+		{
+			try
+			{
+				in.close();
+			}
+			catch (IOException e)
+			{}
+			try
+			{
+				isr.close();
+			}
+			catch (IOException e)
+			{}
+		}
+		return 0;
+	}
+	
+	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/com/l2jmoxos12/gameserver/GameServer.java
===================================================================
--- java/com/l2jmoxos12/gameserver/GameServer.java	(revision 4407)
+++ java/com/l2jmoxos12/gameserver/GameServer.java	(working copy)
@@ -83,6 +83,7 @@
import com.l2jmoxos12.gameserver.idfactory.IdFactory;
import com.l2jmoxos12.gameserver.instancemanager.AirShipManager;
import com.l2jmoxos12.gameserver.instancemanager.AuctionManager;
+import com.l2jmoxos12.gameserver.instancemanager.AutoVoteRewardHandler;
import com.l2jmoxos12.gameserver.instancemanager.BoatManager;
import com.l2jmoxos12.gameserver.instancemanager.CastleManager;
import com.l2jmoxos12.gameserver.instancemanager.CastleManorManager;
@@ -406,6 +407,8 @@
		if ((Config.OFFLINE_TRADE_ENABLE || Config.OFFLINE_CRAFT_ENABLE) && Config.RESTORE_OFFLINERS)
			OfflineTradersTable.restoreOfflineTraders(); 

+		AutoVoteRewardHandler.getInstance();
+		
		if (Config.DEADLOCK_DETECTOR)
		{
			_deadDetectThread = new DeadLockDetector();

Index: java/com/l2jmoxos12/gameserver/Config.java
===================================================================
--- java/com/l2jmoxos12/gameserver/Config.java	(revision 0)
+++ java/com/l2jmoxos12/gameserver/Config.java	(revision 0)
@@ -0,0 +1,162 @@
public static int Random_Of_Sailren_Spawn;

	//Vote Reward by Boorinio
+	public static int HopZone_ID;  
+	public static int  Delay_for_check; 
+	public static int  Item_ID; 
+	public static int  Item_Count; 
+	public static int  Max_Stack;
+	public static int Votes_Required;
@@ -32,4 +4,153 @@
CLAN_LEADER_COLOR_CLAN_LEVEL = Integer.parseInt(L2jMoxos12Settings.getProperty("ClanLeaderColorAtClanLevel", "1"));
+
+HopZone_ID =  Integer.parseInt(L2jMoxos12Settings.getProperty("HopZoneID", "www.google.com"));
+Delay_for_check =  Integer.parseInt(L2jMoxos12Settings.getProperty("Delayforcheck", "600"));
+Item_ID =  Integer.parseInt(L2jMoxos12Settings.getProperty("ItemID", "3470"));
+Item_Count =  Integer.parseInt(L2jMoxos12Settings.getProperty("ItemCount", "1"));
+Max_Stack =  Integer.parseInt(L2jMoxos12Settings.getProperty("MaxStack", "1"));
+Votes_Required =  Integer.parseInt(L2jMoxos12Settings.getProperty("VotesRequired", "10"));

Index: L2jMoxos12/config/l2jmoxos12.properties
===================================================================
--- L2jMoxos12/config/l2jmoxos12.properties	(revision 0)
+++ L2jMoxos12/config/l2jmoxos12.properties	(revision 0)
@@ -39,6 +39,9 @@
+# ============================= #             
+#L2jMoxos12 HopZone Java Vote Reward 
+# ============================= #
+# Hopzone Url
+#For example http://l2.hopzone.net/lineage2/moreinfo/L2Gang/82066.html
+HopZoneID = www.google.com
+
+# Dealy Check
+#This means in every x seconds the Handler will check for vote count
+Delayforcheck = 600
+
+# Item id
+# The reward of your choice 
+ItemID = 3470
+
+# Item Count
+# The Count of your choice
+ItemCount = 1
+
+# MaxStack
+# Recommended 1
+MaxStack = 1
+
+# Votes Required
+# Votes required between rewards
+VotesRequired = 10

Posted

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:179: illegal start of expression

    [javac] private void setLastVoteCount(int voteCount)

    [javac] ^

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:179: illegal start of expression

    [javac] private void setLastVoteCount(int voteCount)

    [javac]         ^

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:179: ';' expected

    [javac] private void setLastVoteCount(int voteCount)

    [javac]                             ^

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:179: ';' expected

    [javac] private void setLastVoteCount(int voteCount)

    [javac]                                           ^

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:184: illegal start of expression

    [javac] private int getLastVoteCount()

    [javac] ^

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:184: ';' expected

    [javac] private int getLastVoteCount()

    [javac]                             ^

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:189: illegal start of expression

    [javac] public static AutoVoteRewardHandler getInstance()

    [javac] ^

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:189: illegal start of expression

    [javac] public static AutoVoteRewardHandler getInstance()

    [javac]       ^

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:189: ';' expected

    [javac] public static AutoVoteRewardHandler getInstance()

    [javac]                                   ^

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:189: ';' expected

    [javac] public static AutoVoteRewardHandler getInstance()

    [javac]                                                 ^

    [javac] C:\Users\Florin\Desktop\java\Promisance\L2_GameServer_It\java\net\sf\l2j\gameserver\instancemanager\AutoVoteRewardHandler.java:200: reached end of file while parsing

    [javac] }

    [javac]  ^

    [javac] 11 errors

Posted

0 to me and my friend too....are there any errors when you are putting  the code? do it manually not by applying the patch

I did it manually and same..

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

    • No complicated KYC, instant setup after purchase!  Boost your connection speed and secure your privacy today!  Official Website: https://novproxy.com?kwd=tt-max
    • Fresh off my private server for inspiration.
    • Custom High Five server L2insolence will open 2026-06-17 21:00 GMT+2 ! ! ! Web: http://www.l2insolence.eu/ Discord: https://discord.gg/duMjnj3y9A We have custom: 10 diferent looking custom armor sets. 8 weapon sets, 2 weapons sets are upgradable. 6 jewel sets. ----------------------------------- All custom tatto, masks, cloaks, agathions, belts, bracelest, talismans and more. Everi single item have own custom stats like: +p.atk% , +m.atk% , +p/m.def% and mutch more. All items in game have own stats. With custom looks. Glowing etc. ----------------------------------- Rates XP, SP: 25x Spoil and Drop: 10x Server Hard Farm ----------------------------------- Enchantment Safe enchant: +20099 Max enchant: +20099 All scrolls: 100% ----------------------------------- You can use scrolls or item enchant NPC to make +++ abd life beter. NPC Buffer There's an NPC buffer in all of our main towns. We have custom self buffs learned with npc with custom stats. Global Gatekeeper. GM Shop with normal items and custom ones, Event NPC, item upgrader NPC. Raid Bosses, every zone have its own boss and drops for rare mats, respawn every 10 seconds.. Olympiad The olympiad is ongoing every two weeks.
    • I agree that kernel-level protection offers much deeper visibility and control, especially when it comes to advanced bots and bypass techniques. That said, I'm not trying to claim that a usermode solution is impossible to bypass. My goal is simply to increase the cost and complexity of bypassing the protection while keeping deployment simple, stable, and compatible for server owners. A lot of Interlude server operators don't want to install kernel drivers or deal with the risks and maintenance that come with them. That's why I'm currently focusing on a layered approach: secure launcher architecture, HWID licensing, session validation, anti-debugging, injection detection, integrity checks, replay protection, and heartbeat monitoring. I'm not ruling out kernel support in the future. Right now, my priority is gathering real-world feedback, improving the product, and learning how people attempt to bypass different protection layers. I appreciate the feedback and the discussion.
  • 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..