Jump to content

Recommended Posts

Posted
On 9/18/2019 at 1:42 PM, TGSLineage2 said:

Hello, as I had already mentioned in the discussion section, today I bring you a voting reward system.


OTliF8V.jpg

 

 

NSqWD5s.png

 

** You can download it here**: Download Vote Reward System

 

For those who don't understand how it works, later I upload a video explaining how it works.

 


Thanks for share, looks great. 

You can adapt it for L2jFrozen 1.5, but i change stuffs very often jaja xD
ea.png.e3b99f331124c39b782a6bf14d626c96.png

  • 3 weeks later...
Posted

hi mate, im trying to use it in l2jserver high five but i stuck at this part:

 

diff --git a/src/main/java/com/l2jserver/Config.java b/src/main/java/com/l2jserver/Config.java
index 7596f49..3ab13de 100644
--- a/src/main/java/com/l2jserver/Config.java
+++ b/src/main/java/com/l2jserver/Config.java
@@ -111,6 +111,57 @@
 	public static final String EMAIL_CONFIG_FILE = "./config/Email.properties";
 	public static final String CH_SIEGE_FILE = "./config/ConquerableHallSiege.properties";
 	public static final String GEODATA_FILE = "./config/GeoData.properties";
+	public static final String TGS_VOTE_FILE = "./config/tgsvote.properties";
+	
+	// ---------------------------------------------------
+	// TGS Vote System
+	// ---------------------------------------------------
+	
+	public static boolean ENABLE_VOTE_SYSTEM;
+	public static long NEXT_VOTE_TIME;
+	public static boolean ENABLE_INDIVIDUAL_RANDOM_ITEM_REWARD;
+	public static boolean ENABLE_GLOBAL_RANDOM_ITEM_REWARD;
+	public static Map<String, Integer> REWARD_ITEMS_AMOUNT;
+	public static boolean ENABLE_VOTE_COMMUNITYBB;
+	public static boolean ENABLE_NPC_VOTE;
+	public static int NPC_VOTE;
+	public static boolean ENABLE_SHOW_VOTE_DIALOG;
+	public static String VOTE_DIALOG_COMMAND;
+	public static boolean ENABLE_GLOBAL_VOTE;
+	public static int INIT_TIME_TO_START_GLOBAL_REWARD;
+	public static int TIME_TO_CHECK_GLOBAL_VOTE_TASK;
+	public static boolean ENABLE_DUALBOX_GLOBAL_REWARD;
+	public static boolean ENABLE_ENCOURAGE_VOTES_COUNT;
+	public static int TIME_INTERVAL_TO_NEXT_ENCOURAGE_VOTES;
+	public static int INITIAL_TIME_ENCOURAGE_MESSAGE;
+	public static String ENCOURAGE_VOTES_MESSAGE;
+	public static String GLOBAL_SUCCESS_REWARD_MESSAGE;
+	public static int GLOBAL_VOTE_RECORD_TO_NEXT_REWARD;
+	public static Map<Integer, Integer> GLOBAL_VOTE_REWARD_ITEMS;
 	// --------------------------------------------------
 	// L2J Variable Definitions
 	// --------------------------------------------------
@@ -1197,6 +1248,289 @@
 			GAME_SERVER_SUBNETS = ipcd.getSubnets();
 			GAME_SERVER_HOSTS = ipcd.getHosts();
 			
+			// tgs vote system configuration
+			
+			final PropertiesParser tgsvote = new PropertiesParser(TGS_VOTE_FILE);
+			ENABLE_VOTE_SYSTEM = tgsvote.getBoolean("EnableVoteSystem", true);
+			NEXT_VOTE_TIME = tgsvote.getInt("NextVoteTime", 12) * 3600000;
+			ENABLE_INDIVIDUAL_RANDOM_ITEM_REWARD = tgsvote.getBoolean("EnableIndividualRandomItemReward", true);
+			ENABLE_GLOBAL_RANDOM_ITEM_REWARD = tgsvote.getBoolean("EnableGlobalRandomItemReward", true);
+			REWARD_ITEMS_AMOUNT = new HashMap<>();
+			new HashMap<>();
+			String[] rdata = tgsvote.getString("RewardItemsAmount", "tgs,3;hop,2;tz,2;global,3").split(";");
+			if (rdata != null)
+			{
+				for (String raData : rdata)
+				{
+					String[] areward = raData.split(",");
+					if (areward.length != 2)
+					{
+						LOG.warn("[ItemRewardList]: invalid config property -> AmountRewardList {}", raData);
+					}
+					else
+					{
+						try
+						{
+							REWARD_ITEMS_AMOUNT.put(areward[0], Integer.parseInt(areward[1]));
+						}
+						catch (NumberFormatException nfe)
+						{
+							LOG.warn("[ItemRewardList]: invalid config property -> AmountList {}", raData);
+						}
+					}
+				}
+			}
+			ENABLE_VOTE_COMMUNITYBB = tgsvote.getBoolean("EnableVoteCommunityBB", true);
+			ENABLE_NPC_VOTE = tgsvote.getBoolean("EnableNpcVote", true);
+			NPC_VOTE = tgsvote.getInt("NpcVote", 25252);
+			ENABLE_SHOW_VOTE_DIALOG = tgsvote.getBoolean("EnableShowVoteDialog", false);
+			VOTE_DIALOG_COMMAND = tgsvote.getString("VoteDialogCommand", ".showvote");
+			
+			ENABLE_GLOBAL_VOTE = tgsvote.getBoolean("EnableGlobalVote", true);
+			INIT_TIME_TO_START_GLOBAL_REWARD = tgsvote.getInt("InitTimeToStartGlobalReward", 30) * 1000;// -> In seconds
+			TIME_TO_CHECK_GLOBAL_VOTE_TASK = tgsvote.getInt("TimeToCheckGlobalVoteTask", 5) * 60000;// -> In minutes

l2jserver update their code and i cant run it cuz config.java doesnt exist any more! thx in advance.

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