Jump to content
  • 0

Topzone Vote Reward On H5


Fizo

Question

Hi mxc i've try to change the code on h5

 

Vote reward they dont count i change the font to div but code it's too difference from the other code's

 

Here it is the code if some1 know the fix and they can help me i will appreciate alot ! thanks

 

 

/*
* Copyright (C) 2013 AwakeNz
* 
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*/

package com.l2jserver.gameserver.instancemanager.votereward;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;

import com.l2jserver.Config;
import com.l2jserver.L2DatabaseFactory;
import com.l2jserver.gameserver.Announcements;
import com.l2jserver.gameserver.ThreadPoolManager;
import com.l2jserver.gameserver.model.L2World;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;

/**
* @author ???
* @reworked fissban
*/

public class VoteRewardTopzone
{
static Logger _log = Logger.getLogger(VoteRewardTopzone.class.getName());

static final int initialCheck = Config.VOTE_SYSTEM_START_TIME * 1000;
static final int delayForCheck = Config.VOTE_SYSTEM_CHECK_TIME * 1000;
int votesneed;

static List<String> _ips = new ArrayList<>();
static List<String> _accounts = new ArrayList<>();

static int lastVoteCount = 0;

VoteRewardTopzone()
{
	if (Config.VOTE_SYSTEM_DATABASE_SAVE)
	{
		load();
	}

	ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new AutoReward(), initialCheck, delayForCheck);
}

public class AutoReward implements Runnable
{
	@Override
	public void run()
	{
		int votes = getVotes();
		_log.info("VoteReward: Current Votes Topzone: " + votes);

		if (votes >= (getLastVoteCount() + Config.VOTE_SYSTEM_COUNT))
		{
			Collection<L2PcInstance> pls = L2World.getInstance().getAllPlayers().valueCollection();
			{
				for (L2PcInstance onlinePlayer : pls)
				{
					if (onlinePlayer.isOnline() && !onlinePlayer.getClient().isDetached() && !_accounts.contains(onlinePlayer.getAccountName()) && !_ips.contains(onlinePlayer.getClient().getConnection().getInetAddress().getHostAddress()))
					{
						String[] parase = Config.VOTE_SYSTEM_ITEM_ID_TOPZONE.split(",");
						String[] parase3 = Config.VOTE_SYSTEM_ITEM_COUNT_TOPZONE.split(",");

						for (int o = 0; o < parase.length; o++)
						{
							int parase2 = Integer.parseInt(parase[o]);
							int parase4 = Integer.parseInt(parase3[o]);

							onlinePlayer.addItem("vote_reward", parase2, parase4, onlinePlayer, true);
						}

						_ips.add(onlinePlayer.getClient().getConnection().getInetAddress().getHostAddress());
						_accounts.add(onlinePlayer.getAccountName());
					}
				}
			}

			_log.info("VoteReward Topzone: All players has been rewared!");

			Announcements.getInstance().announceToAll("be rewarded!");
			Announcements.getInstance().announceToAll("for Topzone vote!");
			setLastVoteCount(getLastVoteCount() + Config.VOTE_SYSTEM_COUNT);
		}

		if (getLastVoteCount() == 0)
		{
			setLastVoteCount(votes);
		}

		else if ((((getLastVoteCount() + Config.VOTE_SYSTEM_COUNT) - votes) > Config.VOTE_SYSTEM_COUNT) || (votes > (getLastVoteCount() + Config.VOTE_SYSTEM_COUNT)))
		{
			setLastVoteCount(votes);
		}

		votesneed = (getLastVoteCount() + Config.VOTE_SYSTEM_COUNT) - votes;

		if (votesneed == 0)
		{
			votesneed = Config.VOTE_SYSTEM_COUNT;
		}

		Announcements.getInstance().announceToAll("Our Current vote count is " + votes + ".");
		Announcements.getInstance().announceToAll("We Need " + votesneed + " votes in Topzone!");

		_ips.clear();
		_accounts.clear();
	}
}

public int getVotes()
{
	URL url = null;
	InputStreamReader isr = null;
	BufferedReader in = null;
	try
	{
		url = new URL(Config.VOTE_SYSTEM_PAGE_TOPZONE);
		URLConnection con = url.openConnection();
		con.addRequestProperty("User-Agent", "Mozilla/4.76");
		isr = new InputStreamReader(con.getInputStream());
		in = new BufferedReader(isr);
		String inputLine;

		while ((inputLine = in.readLine()) != null)
		{
			if (inputLine.contains("<tr><td><div align=\"center\"><b><font style=\"font-size:14px;color:#018BC1;\">"))
			{
				String i = inputLine.replace("<tr><td><div align=\"center\"><b><font style=\"font-size:14px;color:#018BC1;\">", "");
				i = i.replace("</font></b></div></td></tr>", "");
				i = i.trim();
				int o = Integer.parseInt(i);
				return Integer.valueOf(o);
			}
		}
	}
	catch (IOException e)
	{
		Announcements.getInstance().announceToAll("Topzone is offline");
		_log.warning("AutoVoteRewardHandler: " + e);
	}
	return 0;
}

public void setLastVoteCount(int voteCount)
{
	lastVoteCount = voteCount;
}

public int getLastVoteCount()
{
	return lastVoteCount;
}

public void load()
{
	int votes = 0;

	try (Connection con = L2DatabaseFactory.getInstance().getConnection())
	{
		PreparedStatement statement = con.prepareStatement("SELECT vote FROM votetopzone LIMIT 1");// DB votetopzone
		ResultSet rset = statement.executeQuery();

		while (rset.next())
		{
			votes = rset.getInt("vote");
		}
		rset.close();
		statement.close();
	}
	catch (Exception e)
	{
		_log.log(Level.WARNING, "data error on vote Topzone: ", e);
	}

	setLastVoteCount(votes);
}

public void save()
{
	try (Connection con = L2DatabaseFactory.getInstance().getConnection())
	{
		PreparedStatement statement = con.prepareStatement("UPDATE votetopzone SET vote = ? WHERE id=1");
		statement.setInt(1, getLastVoteCount());
		statement.execute();
		statement.close();
	}
	catch (Exception e)
	{
		_log.log(Level.WARNING, "data error on vote Topzone: ", e);
	}
}

public static VoteRewardTopzone getInstance()
{
	return SingletonHolder._instance;
}

static class SingletonHolder
{
	protected static final VoteRewardTopzone _instance = new VoteRewardTopzone();
}
}

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Change the if inside the while() with this

 

if (inputLine.contains("class=\"votes2\""))
			{
				return Integer.valueOf(inputLine.split(">")[3].replace("</div", "")));
			}

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


  • Posts

    • Καλησπερα παιδια,παιζω τα ρεστα μου σε αυτο το θρεντ.Παλευω με ενα προβλημα περιπου 10 μερες.Προσπαθησα να κανω upgrade τα client files του interlude με αυτα ενως gracia final(apo files tou criticalerror)και οταν εκανα copy-paste τα αρχεια(animation/l2text/maps/staticmeshes/system/systemtextures/textures),το l2.exe σταματησε να δουλευει. Κατεβασα το engine.dll που δινεται σαν λυση στο συγκεκριμενο προβλημα αλλα δεν δουλεψε.Επειτα κατεβασα ενα ολοκληρο client(Celestine fix) και αυτο ανοιγει αλλα οταν προσπαθω να αλλαξω το l2.ini για να loggarw,τοτε δεν ανοιγει ξανα το l2.Στο task manager βλεπω ενα l2.exe. Για καποιο λογο νιωθω οτι μπορει να εγινε μαλακια με τα fonts.Δεν ειμαι σιγουρος γι αυτο. Τι δοκιμασα?   -Διαφορετικα L2 editors -Upgrade/downgrade drivers GPU -Uninstall+clean files απο 3-4 διαφορετικα αρχεια IL -Προφανως το engine.dll οπως λεω και παραπανω -Delete/hide asiahm-medium font -Run l2.exe με compatibility Vista/Xp/etc etc   Πριν φτασω στην τελευταια πιστα που ειναι το format,εχει καποιος ετσω και μια ιδεα γτ μπορει να brickare ετσι το συστημα?
    • Gift30 — is a promo code for a -30% discount on all fares. Have time to activate the promo code before 03.06.2023.   SELECT TARIFY   As a reminder, we are open to cooperation and ready to offer favourable conditions for bulk rates, as well as to make you the personalised rate you've been dreaming of for so long.    Kind regards, Proxy5 Team.
    • Good luck, i like Pride Style.
    • Opening June 17 at 19:00 (UTC +3) Open Beta Test from June 10   Link to announce : https://forum.lineage2dex.com/threads/16500/ This is pre-announcing of summer season server, so we want to share some key points of this new server. Full details we announce a bit latter. Summer is a time for rest and vacations, so we decided to make this season much easier and less hardcore than usual. Our features: We use classic Interlude rules, no Kamaels, new races or new gear (maximum S gr like it should be on Interlude). But yes, we are using a new modern client, and we add new content to make your gameplay more varied and interesting. So if you before play only on default Interlude servers it will be not a problem for you  And for players who before not play in la2 at all, we have good Data Base in game where you can get all detailed info about server + we have very friendly core Dex community on discord who will help you with pleasure. New Classic Game client (more FPS) Unique TvT system, with 1 week season, rating for best players in classes. Good reward (you can get for it even epics, even if you solo player, just regular visit it) Daily Instance Zones with good rewards (Rim Kamaloka, Labyrinth of Abyss + others instance) Daily reward system. Visit game each day being Nobless and get reward. Daily Quests Item Broker Auctions in towns and Fair on Giran Harbor Masterwork items (can be obtained by crafting or farming RBs ) PvP Items Residence skills High-end content (details below) Cycle macros Some changes on summer season: x100 Exp Rates From the start, all characters have 24 slots buffs (you don't need Divinity books) All characters have from start buff book with all buffs. From Astarte, you can get book with buff profiles. Simplified system for getting Nobles Reworked TvT season system We have destroyed the stereotypes that x50 servers live for a couple of weeks. And our Union x50 server proves it (working for 3+ years with good online and clans fighting for Epic bosses and on Daily PvP) We have enough content that will allow you to maintain interest in the game all the time! And we are always working on improving the game and adding new interesting activities and content. Our Last (winter) season start from November 5 2022 and was merged with Union on March 28 2023 (5 month). High-end activities on start will be not available, we will add it gradually with time. High-end content: Hellbound (closed on server start) Spoiler Talent Tree system - Lineage2Dex | Forum | Lineage 2 Classic | Interlude Steel Citadel - Lineage2Dex | Forum | Lineage 2 Classic | Interlude Anomic Foundry and Elixirs - Lineage2Dex | Forum | Lineage 2 Classic | Interlude Ancient Mansion, Cursed Town & Charms! - Lineage2Dex | Forum | Lineage 2 Classic | Interlude Beleth - Cursed Wizard - Lineage2Dex | Forum | Lineage 2 Classic | Interlude We will be glad to hear any comments and suggestions on our discord channel, join it we have very friendly community there  - Join discord  
  • Topics

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