Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ### Eclipse Workspace Patch 1.0
- #P L2jFrozen_GameServer
- Index: head-src/com/l2jfrozen/gameserver/votesystem/DB/globalVoteDB.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/DB/globalVoteDB.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/DB/globalVoteDB.java (working copy)
- @@ -0,0 +1,123 @@
- +package com.l2jfrozen.gameserver.votesystem.DB;
- +
- +import java.sql.Connection;
- +import java.sql.PreparedStatement;
- +import java.sql.ResultSet;
- +import java.sql.SQLException;
- +import java.sql.Statement;
- +import java.util.logging.Logger;
- +
- +import com.l2jfrozen.gameserver.votesystem.Model.globalVote;
- +import com.l2jfrozen.util.database.L2DatabaseFactory;
- +import com.l2jfrozen.gameserver.votesystem.Enum.voteSite;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class globalVoteDB
- +{
- + public static final Logger LOGGER = Logger.getLogger(globalVoteDB.class.getName());
- + private Statement st;
- + private Connection con;
- + private final globalVote[] _globalVotes;
- +
- + private globalVoteDB()
- + {
- + _globalVotes = new globalVote[voteSite.values().length];
- + loadGlobalVotes();
- + }
- +
- + public void loadGlobalVotes()
- + {
- + try (Connection con = L2DatabaseFactory.getInstance().getConnection();PreparedStatement ps = con.prepareStatement("Select voteSite,lastRewardVotes from globalvotes");
- +
- + ResultSet rs = ps.executeQuery();)
- + {
- + if (rs.getRow() == 0)
- + {
- + for (voteSite vs : voteSite.values())
- + {
- + globalVote gv = new globalVote();
- + gv.setVoteSite(vs.ordinal());
- + gv.setVotesLastReward(0);
- + _globalVotes[gv.getVoyeSite()] = gv;
- + }
- + return;
- + }
- + while (rs.next())
- + {
- + globalVote gv = new globalVote();
- + gv.setVoteSite(rs.getInt("voteSite"));
- + gv.setVotesLastReward(rs.getInt("lastRewardVotes"));
- + _globalVotes[gv.getVoyeSite()] = gv;
- + }
- + ps.close();
- + con.close();
- +
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public void saveGlobalVote(globalVote gb)
- + {
- + try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- + PreparedStatement ps = con.prepareStatement("INSERT INTO globalvotes(voteSite,lastRewardVotes) VALUES(?,?)" + "ON DUPLICATE KEY UPDATE voteSite = VALUES(voteSite), lastRewardVotes = VALUES(lastRewardVotes)"))
- +
- + {
- + ps.setInt(1, gb.getVoyeSite());
- + ps.setInt(2, gb.getVotesLastReward());
- + ps.executeUpdate();
- +
- + ps.close();
- + con.close();
- +
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public void saveGlobalVotes(globalVote[] globalVotes)
- + {
- + try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- + PreparedStatement ps = con.prepareStatement("INSERT INTO globalvotes(voteSite,lastRewardVotes) VALUES(?,?)" + "ON DUPLICATE KEY UPDATE voteSite = VALUES(voteSite), lastRewardVotes = VALUES(lastRewardVotes)"))
- +
- + {
- + for (voteSite vs : voteSite.values())
- + {
- + globalVote gb = globalVotes[vs.ordinal()];
- + ps.setInt(1, gb.getVoyeSite());
- + ps.setInt(2, gb.getVotesLastReward());
- + ps.addBatch();
- + }
- + ps.executeBatch();
- +
- + ps.close();
- + con.close();
- +
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public globalVote[] getGlobalVotes()
- + {
- + return _globalVotes;
- + }
- +
- + public static final globalVoteDB getInstance()
- + {
- + return SingleHolder.INSTANCE;
- + }
- +
- + private static final class SingleHolder
- + {
- + protected static final globalVoteDB INSTANCE = new globalVoteDB();
- + }
- +}
- Index: config/votesystem.properties
- ===================================================================
- --- config/votesystem.properties (nonexistent)
- +++ config/votesystem.properties (working copy)
- @@ -0,0 +1,95 @@
- +EnableVoteSystem = True
- +
- +EnableGlobalVote = True
- +
- +EnableIndividualVote = True
- +
- +## Time to Update table totalVotes from DB
- +NextTimeToAutoUpdateTotalVote = 2
- +
- +## Time to update table individualVotes
- +NextTimeToAutoUpdateIndividualVotes = 2
- +
- +NextTimeToAutoCleanInnecesaryVotes = 30
- +
- +NextTimeToCheckAutoGlobalVotesReward = 1
- +
- +IntervalToNextVote = 12
- +
- +GlobalVotesAmountToNextReward = 1
- +
- +EnableVotingCommand = True
- +
- +VotingCommand = getreward
- +
- +## l2.topgameserver.net
- +VoteLinkTgs = http://l2.topgameserver.net/lineage/VoteApi/
- +
- +TgsApiKey =
- +
- +## l2top.co
- +VoteLinkTopCo = https://l2top.co/reward/
- +
- +TopCoSrvId =
- +
- +## ITopz.com
- +VoteLinkItopz = https://itopz.com/check/
- +
- +ItopzZpiKey =
- +
- +ItopzSrvId =
- +
- +## l2votes.com
- +VoteLinkVts = https://l2votes.com/
- +
- +VtsApiKey =
- +
- +VtsSid =
- +
- +## Hopzone.net
- +VoteLinkHz = https://api.hopzone.net/lineage2/
- +
- +HzApiKey =
- +
- +## l2network.eu
- +VoteNetworkLink = https://l2network.eu/api.php
- +
- +VoteNetworkUserName =
- +
- +VoteNetworkApiKey =
- +
- +## L2TopServer.com
- +VoteLinkTss = https://l2topservers.com/votes?
- +
- +TssApiToken =
- +
- +TsSrvId = 453
- +
- +TsDomainName= l2catgang
- +
- +## top.l2jbrasil.com
- +BrasilVoteLink = https://top.l2jbrasil.com/votesystem/index.php?
- +
- +BrasilUserName = julioguzman
- +
- +## Mmotop.eu
- +VoteLinkMmotop = https://l2jtop.com/api/
- +
- +MmotopApiKey =
- +
- +## L2TopZone.com
- +VoteLinkTz = https://api.l2topzone.com/v1/
- +
- +TzApiKey =
- +
- +## L2Servers.com
- +VoteLinkServers = https://www.l2servers.com/api/
- +
- +ServersHashCode =
- +
- +ServersSrvId =
- +
- +
- +## for localhost test if your project is live, put the word off or leave it blank
- +TestIp =
- +
- Index: head-src/com/l2jfrozen/gameserver/network/serverpackets/Snoop.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/network/serverpackets/Snoop.java (revision 1132)
- +++ head-src/com/l2jfrozen/gameserver/network/serverpackets/Snoop.java (working copy)
- @@ -20,6 +20,8 @@
- */
- package com.l2jfrozen.gameserver.network.serverpackets;
- +
- +import com.l2jfrozen.gameserver.enums.ChatType;
- import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
- /**
- @@ -31,13 +33,23 @@
- private static final String _S__D5_SNOOP = "[S] D5 Snoop";
- private final L2PcInstance _snooped;
- private final int _type;
- + private final ChatType _ctype;
- private final String _speaker;
- private final String _msg;
- + public Snoop(L2PcInstance snooped, ChatType _cType, String speaker, String msg)
- + {
- + _snooped = snooped;
- + this._type = 0;
- + _ctype = _cType;
- + _speaker = speaker;
- + _msg = msg;
- + }
- public Snoop(final L2PcInstance snooped, final int type, final String speaker, final String msg)
- {
- _snooped = snooped;
- _type = type;
- + this._ctype = null;
- _speaker = speaker;
- _msg = msg;
- }
- Index: head-src/com/l2jfrozen/gameserver/network/serverpackets/CreatureSay.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/network/serverpackets/CreatureSay.java (revision 1132)
- +++ head-src/com/l2jfrozen/gameserver/network/serverpackets/CreatureSay.java (working copy)
- @@ -20,6 +20,8 @@
- */
- package com.l2jfrozen.gameserver.network.serverpackets;
- +
- +import com.l2jfrozen.gameserver.enums.ChatType;
- import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
- /**
- @@ -31,23 +33,30 @@
- // ddSS
- private static final String _S__4A_CREATURESAY = "[S] 4A CreatureSay";
- private final int _objectId;
- - private final int _textType;
- + private final int _chatType;
- private final String _charName;
- private final String _text;
- /**
- * @param objectId
- - * @param messageType
- + * @param chatType
- * @param charName
- * @param text
- */
- - public CreatureSay(final int objectId, final int messageType, final String charName, final String text)
- + public CreatureSay(int objectId, ChatType chatType, String charName, String text)
- {
- _objectId = objectId;
- - _textType = messageType;
- + _chatType = chatType.getClientId();
- _charName = charName;
- _text = text;
- - // setLifeTime(0);
- + }
- +
- + public CreatureSay(int objectId, int chatType, String charName, String text)
- + {
- + _objectId = objectId;
- + _chatType = chatType;
- + _charName = charName;
- + _text = text;
- }
- @Override
- @@ -55,14 +64,14 @@
- {
- writeC(0x4a);
- writeD(_objectId);
- - writeD(_textType);
- + writeD(_chatType);
- writeS(_charName);
- writeS(_text);
- - final L2PcInstance _pci = getClient().getActiveChar();
- - if (_pci != null)
- + final L2PcInstance player = getClient().getActiveChar();
- + if (player != null)
- {
- - _pci.broadcastSnoop(_textType, _charName, _text, this);
- + player.broadcastSnoop(ChatType.values()[_chatType], _charName, _text, this);
- }
- }
- Index: head-src/com/l2jfrozen/gameserver/votesystem/VoteUtil/VoteSiteXml.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/VoteUtil/VoteSiteXml.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/VoteUtil/VoteSiteXml.java (working copy)
- @@ -0,0 +1,127 @@
- +package com.l2jfrozen.gameserver.votesystem.VoteUtil;
- +
- +import java.io.File;
- +import java.util.Collection;
- +import java.util.HashMap;
- +import java.util.Map;
- +import java.util.logging.Level;
- +
- +import javax.xml.parsers.DocumentBuilderFactory;
- +
- +import org.apache.log4j.Logger;
- +
- +import org.w3c.dom.Document;
- +import org.w3c.dom.NamedNodeMap;
- +import org.w3c.dom.Node;
- +
- +import com.l2jfrozen.Config;
- +import com.l2jfrozen.gameserver.datatables.xml.ExperienceData;
- +import com.l2jfrozen.gameserver.datatables.xml.AugmentationData.augmentationSkill;
- +import com.l2jfrozen.gameserver.votesystem.Model.Reward;
- +import com.l2jfrozen.gameserver.votesystem.Model.VoteSite;
- +
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class VoteSiteXml
- +{
- +
- + private final Map<Integer, VoteSite> _voteSites = new HashMap<>();
- + private static Logger LOGGER = Logger.getLogger(ExperienceData.class);
- +
- + private VoteSiteXml()
- + {
- + load();
- + }
- +
- +
- + public void load()
- + {
- + try
- + {
- + final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
- + factory.setValidating(false);
- + factory.setIgnoringComments(true);
- +
- + File file = new File(Config.DATAPACK_ROOT + "/data/stats/votesystem.xml");
- + if (!file.exists())
- + {
- + if (Config.DEBUG)
- + {
- + LOGGER.info("The votesystem file is missing.");
- + }
- + return;
- + }
- +
- + Document doc = factory.newDocumentBuilder().parse(file);
- +
- + for (Node n = doc.getFirstChild(); n != null; n = n.getNextSibling())
- + {
- + if ("list".equalsIgnoreCase(n.getNodeName()))
- + {
- + for (Node d = n.getFirstChild(); d != null; d = d.getNextSibling())
- + {
- + final VoteSite votesite = new VoteSite();
- + if ("votesite".equalsIgnoreCase(d.getNodeName()))
- + {
- + NamedNodeMap attrs = d.getAttributes();
- + String name = attrs.getNamedItem("name").getNodeValue();
- + int ordinal = Integer.parseInt(attrs.getNamedItem("ordinal").getNodeValue());
- + votesite.setSiteName(name);
- + votesite.setSiteOrdinal(ordinal);
- + for (Node cd = d.getFirstChild(); cd != null; cd = cd.getNextSibling())
- + {
- + if ("item".equalsIgnoreCase(cd.getNodeName()))
- + {
- + attrs = cd.getAttributes();
- + int itemId = Integer.parseInt(attrs.getNamedItem("itemId").getNodeValue());
- + int itemCount = Integer.parseInt(attrs.getNamedItem("itemCount").getNodeValue());
- + votesite.getRewardList().add(new Reward(itemId,itemCount));
- + }
- +
- + }
- + _voteSites.put(votesite.getSiteOrdinal(), votesite);
- + attrs = null;
- + }
- + }
- + }
- + }
- +
- +
- + doc = null;
- + file = null;
- + }
- + catch (final Exception e)
- + {
- + if (Config.ENABLE_ALL_EXCEPTIONS)
- + e.printStackTrace();
- +
- + LOGGER.error("Error parsing votesystem.xml", e);
- +
- + return;
- + }
- + }
- +
- +
- + public String getSiteName(int ordinal)
- + {
- + return _voteSites.get(ordinal).getSiteName();
- + }
- +
- + public Collection<Reward> getRewards(int ordinal)
- + {
- + return _voteSites.get(ordinal).getRewardList();
- + }
- +
- + public static final VoteSiteXml getInstance()
- + {
- + return SingletonHolder.INSTANCE;
- + }
- +
- + private static final class SingletonHolder
- + {
- + protected static final VoteSiteXml INSTANCE = new VoteSiteXml();
- + }
- +
- +}
- Index: head-src/com/l2jfrozen/gameserver/enums/ChatType.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/enums/ChatType.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/enums/ChatType.java (working copy)
- @@ -0,0 +1,60 @@
- +
- +package com.l2jfrozen.gameserver.enums;
- +
- +/**
- + * @author St3eT
- + */
- +public enum ChatType
- +{
- + GENERAL(0),
- + SHOUT(1),
- + WHISPER(2),
- + PARTY(3),
- + CLAN(4),
- + GM(5),
- + PETITION_PLAYER(6),
- + PETITION_GM(7),
- + TRADE(8),
- + ALLIANCE(9),
- + ANNOUNCEMENT(10),
- + BOAT(11),
- + FRIEND(12),
- + MSNCHAT(13),
- + PARTYMATCH_ROOM(14),
- + PARTYROOM_COMMANDER(15),
- + PARTYROOM_ALL(16),
- + HERO_VOICE(17),
- + CRITICAL_ANNOUNCE(18);
- +
- + private final int _clientId;
- +
- + private ChatType(int clientId)
- + {
- + _clientId = clientId;
- + }
- +
- + /**
- + * @return the client id.
- + */
- + public int getClientId()
- + {
- + return _clientId;
- + }
- +
- + /**
- + * Finds the {@code ChatType} by its clientId
- + * @param clientId the clientId
- + * @return the {@code ChatType} if its found, {@code null} otherwise.
- + */
- + public static ChatType findByClientId(int clientId)
- + {
- + for (ChatType ChatType : values())
- + {
- + if (ChatType.getClientId() == clientId)
- + {
- + return ChatType;
- + }
- + }
- + return null;
- + }
- +}
- \ No newline at end of file
- Index: head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java (revision 1132)
- +++ head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java (working copy)
- @@ -77,6 +77,7 @@
- import com.l2jfrozen.gameserver.datatables.sql.NpcTable;
- import com.l2jfrozen.gameserver.datatables.sql.SkillTreeTable;
- import com.l2jfrozen.gameserver.datatables.xml.ExperienceData;
- +import com.l2jfrozen.gameserver.enums.ChatType;
- import com.l2jfrozen.gameserver.geo.GeoData;
- import com.l2jfrozen.gameserver.handler.IItemHandler;
- import com.l2jfrozen.gameserver.handler.ItemHandler;
- @@ -16024,7 +16025,21 @@
- }
- }
- }
- -
- + public void broadcastSnoop(ChatType _chatType, String name, String text, CreatureSay cs)
- + {
- + if (!_snoopListener.isEmpty())
- + {
- + final Snoop sn = new Snoop(this, _chatType, name, text);
- + for (L2PcInstance pci : _snoopListener)
- + {
- + if (pci != null)
- + {
- + pci.sendPacket(cs);
- + pci.sendPacket(sn);
- + }
- + }
- + }
- + }
- public void addSnooper(final L2PcInstance pci)
- {
- if (!_snoopListener.contains(pci))
- Index: head-src/com/l2jfrozen/gameserver/handler/voicedcommandhandlers/VoteReward.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/handler/voicedcommandhandlers/VoteReward.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/handler/voicedcommandhandlers/VoteReward.java (working copy)
- @@ -0,0 +1,92 @@
- +/*
- + * 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.l2jfrozen.gameserver.handler.voicedcommandhandlers;
- +
- +import com.l2jfrozen.Config;
- +import com.l2jfrozen.gameserver.handler.IVoicedCommandHandler;
- +import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
- +import com.l2jfrozen.gameserver.votesystem.Enum.voteSite;
- +import com.l2jfrozen.gameserver.votesystem.Handler.voteManager;
- +import com.l2jfrozen.gameserver.votesystem.VoteUtil.VoteSiteXml;
- +
- +/**
- + * @author escor
- + *
- + */
- +public class VoteReward implements IVoicedCommandHandler
- +{
- + @Override
- + public boolean useVoicedCommand(String command, L2PcInstance player, String params)
- + {
- + final L2PcInstance _player = player;
- + if (command.equalsIgnoreCase(Config.VOTING_COMMAND))
- + {
- + if (player.isInJail())
- + {
- + player.sendMessage("You cannot use this function while you are jailed");
- + return false;
- + }
- + if (!Config.ENABLE_VOTE_SYSTEM)
- + {
- + player.sendMessage("The rewards system has been disabled by your administrator");
- + return false;
- + }
- + if (!Config.ENABLE_INDIVIDUAL_VOTE)
- + {
- + player.sendMessage("The individual reward system is disabled");
- + return false;
- + }
- + if (!Config.ENABLE_VOTING_COMMAND)
- + {
- + player.sendMessage("Voting command reward is disabled");
- + return false;
- + }
- +
- + for (final voteSite vs : voteSite.values())
- + {
- + new Thread(new Runnable() {
- +
- + @Override
- + public void run()
- + {
- + voteManager.getInatance().getReward(_player, vs.ordinal());
- +
- + }
- +
- + }).start();
- + }
- +
- + return true;
- +
- + }
- + if(command.equalsIgnoreCase("reloadrewards") && player.isGM()) {
- + VoteSiteXml.getInstance().load();
- + player.sendMessage("=============All reward has been reloaded=============");
- + return true;
- + }
- + return false;
- + }
- +
- + @Override
- + public String[] getVoicedCommandList()
- + {
- + return new String[]
- + {
- + Config.VOTING_COMMAND,
- + "reloadrewards",
- + };
- + }
- +
- +}
- \ No newline at end of file
- Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestBypassToServer.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestBypassToServer.java (revision 1132)
- +++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestBypassToServer.java (working copy)
- @@ -125,6 +125,30 @@
- {
- playerHelp(activeChar, _command.substring(12));
- }
- + else if (_command.startsWith("vote_"))
- + {
- +
- + int endOfId = _command.indexOf('_', 6);
- + String id;
- + if (endOfId > 0)
- + {
- + id = _command.substring(5, endOfId);
- + }
- + else
- + {
- + id = _command.substring(5);
- + }
- +
- + if (_command.split(" ")[1].toString() != null)
- + {
- + final L2Object object = L2World.getInstance().findObject(Integer.parseInt(id));
- + if ((Config.ALLOW_CLASS_MASTERS && Config.ALLOW_REMOTE_CLASS_MASTERS && (object instanceof L2ClassMasterInstance)) //
- + || ((object instanceof L2NpcInstance) && (endOfId > 0) && activeChar.isInsideRadius(object, L2NpcInstance.INTERACTION_DISTANCE, false, false)))
- + {
- + ((L2NpcInstance) object).onBypassFeedback(activeChar, _command.split(" ")[1].toString());
- + }
- + }
- + }
- else if (_command.startsWith("npc_"))
- {
- if (!activeChar.validateBypass(_command))
- Index: head-src/com/l2jfrozen/gameserver/votesystem/Model/individualVote.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/Model/individualVote.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/Model/individualVote.java (working copy)
- @@ -0,0 +1,78 @@
- +package com.l2jfrozen.gameserver.votesystem.Model;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class individualVote
- +{
- + private String _voterIp;
- + private long _diffTime;
- + private long _votingTimeSite;
- + private int _voteSite;
- + private boolean _alreadyRewarded;
- +
- + public individualVote(String voterIp, long diffTime, long votingTimeSite, int voteSite, boolean alreadyRewarded)
- + {
- + _voterIp = voterIp;
- + _diffTime = diffTime;
- + _votingTimeSite = votingTimeSite;
- + _voteSite = voteSite;
- + _alreadyRewarded = alreadyRewarded;
- + }
- +
- + public individualVote()
- + {
- +
- + }
- +
- + public void setVoterIp(String voterIp)
- + {
- + _voterIp = voterIp;
- + }
- +
- + public void setDiffTime(long diffTime)
- + {
- + _diffTime = diffTime;
- + }
- +
- + public void setVotingTimeSite(long votingTimeSite)
- + {
- + _votingTimeSite = votingTimeSite;
- + }
- +
- + public void setVoteSite(int voteSite)
- + {
- + _voteSite = voteSite;
- + }
- +
- + public void setAlreadyRewarded(boolean alreadyRewarded)
- + {
- + _alreadyRewarded = alreadyRewarded;
- + }
- +
- + public String getVoterIp()
- + {
- + return _voterIp;
- + }
- +
- + public long getDiffTime()
- + {
- + return _diffTime;
- + }
- +
- + public long getVotingTimeSite()
- + {
- + return _votingTimeSite;
- + }
- +
- + public int getVoteSite()
- + {
- + return _voteSite;
- + }
- +
- + public boolean getAlreadyRewarded()
- + {
- + return _alreadyRewarded;
- + }
- +
- +}
- Index: head-src/com/l2jfrozen/gameserver/Shutdown.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/Shutdown.java (revision 1132)
- +++ head-src/com/l2jfrozen/gameserver/Shutdown.java (working copy)
- @@ -47,6 +47,7 @@
- import com.l2jfrozen.gameserver.thread.LoginServerThread;
- import com.l2jfrozen.gameserver.thread.ThreadPoolManager;
- import com.l2jfrozen.gameserver.util.sql.SQLQueue;
- +import com.l2jfrozen.gameserver.votesystem.Handler.voteManager;
- import com.l2jfrozen.util.database.L2DatabaseFactory;
- import com.l2jfrozen.util.database.SqlUtils;
- @@ -679,6 +680,12 @@
- GrandBossManager.getInstance().cleanUp();
- LOGGER.info("GrandBossManager: All Grand Boss info saved!!");
- + if (Config.ENABLE_VOTE_SYSTEM)
- + {
- + voteManager.getInatance().Shutdown();
- + LOGGER.info("Vote data have been saved!!");
- + }
- +
- // Save data CountStore
- TradeController.getInstance().dataCountStore();
- LOGGER.info("TradeController: All count Item Saved");
- Index: head-src/com/l2jfrozen/gameserver/votesystem/Model/Reward.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/Model/Reward.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/Model/Reward.java (working copy)
- @@ -0,0 +1,44 @@
- +package com.l2jfrozen.gameserver.votesystem.Model;
- +
- +import com.l2jfrozen.gameserver.templates.StatsSet;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class Reward
- +{
- + private int _itemId;
- + private int _itemCount;
- +
- + public Reward(int itemId, int itemCount)
- + {
- + this._itemId = itemId;
- + this._itemCount = itemCount;
- + }
- +
- + public Reward(StatsSet set)
- + {
- + _itemId = set.getInteger("itemId");
- + _itemCount = set.getInteger("itemCount");
- + }
- +
- + public void setItemId(int itemId)
- + {
- + _itemId = itemId;
- + }
- +
- + public void setItemCount(int itemCount)
- + {
- + _itemCount = itemCount;
- + }
- +
- + public int getItemId()
- + {
- + return _itemId;
- + }
- +
- + public int getItemCount()
- + {
- + return _itemCount;
- + }
- +}
- Index: head-src/com/l2jfrozen/gameserver/votesystem/Model/globalVote.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/Model/globalVote.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/Model/globalVote.java (working copy)
- @@ -0,0 +1,53 @@
- +package com.l2jfrozen.gameserver.votesystem.Model;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class globalVote
- +{
- + private int _voteSite;
- + private int _votesLastReward;
- + private int _currentVotes;
- +
- + public globalVote()
- + {
- +
- + }
- +
- + public globalVote(int voteSite, int votesLastReward)
- + {
- + _voteSite = voteSite;
- + _votesLastReward = votesLastReward;
- + }
- +
- + public void setVoteSite(int voteSite)
- + {
- + _voteSite = voteSite;
- + }
- +
- + public void setVotesLastReward(int votesLastReward)
- + {
- + _votesLastReward = votesLastReward;
- + }
- +
- + public void setCurrentVotes(int currentVotes)
- + {
- + _currentVotes = currentVotes;
- + }
- +
- + public int getVoyeSite()
- + {
- + return _voteSite;
- + }
- +
- + public int getVotesLastReward()
- + {
- + return _votesLastReward;
- + }
- +
- + public int getCurrentVotes()
- + {
- + return _currentVotes;
- + }
- +
- +}
- Index: head-src/com/l2jfrozen/gameserver/votesystem/VoteUtil/VoteUtil.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/VoteUtil/VoteUtil.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/VoteUtil/VoteUtil.java (working copy)
- @@ -0,0 +1,122 @@
- +package com.l2jfrozen.gameserver.votesystem.VoteUtil;
- +
- +import java.io.BufferedReader;
- +import java.io.InputStreamReader;
- +import java.net.HttpURLConnection;
- +import java.net.URL;
- +
- +import java.util.logging.Logger;
- +
- +import com.l2jfrozen.gameserver.votesystem.Handler.voteHandler;
- +
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public final class VoteUtil
- +{
- + public static final Logger LOGGER = Logger.getLogger(voteHandler.class.getName());
- +
- + private static String voteTimeZones[] =
- + {
- + "topgameserver.net=Europe/Berlin",
- + "itopz.com=America/New_York",
- + "l2top.co=Europe/London",
- + "l2votes.com=GMT",
- + "hopzone.net=Europe/Athens",
- + "l2network.eu=America/Chicago",
- + "l2topservers.com=Europe/Athens",
- + "top.l2jbrasil.com=America/Sao_Paulo",
- + "mmotop.eu=America/Chicago",
- + "l2topzone.com=America/Chicago",
- + "l2servers.com=America/Chicago",
- + };
- +
- + /*public static final long getTimeVotingSite(int ordinalSite)
- + {
- + LocalDateTime ldt = LocalDateTime.now(ZoneId.of(voteTimeZones[ordinalSite].split("=")[1]));
- + ZonedDateTime zdt = ldt.atZone(ZoneId.systemDefault());
- + long millis = zdt.toInstant().toEpochMilli();
- + return millis;
- + }*/
- +
- + public static final String Sites[] =
- + {
- + "L2.TopGameServer.net",
- + "ITopZ.com",
- + "L2Top.co",
- + "L2Votes.com",
- + "L2.Hopzone.net",
- + "L2Network.eu",
- + "L2TopServers.com",
- + "top.l2jbrasil.com",
- + "MMOTOP.eu",
- + "L2Topzone.com",
- + "L2Servers.com"
- + };
- +
- + public static final String getResponse(String Url, int ordinal)
- + {
- +
- + try
- + {
- + int responseCode = 0;
- + URL objUrl = new URL(Url);
- + HttpURLConnection con = (HttpURLConnection) objUrl.openConnection();
- + con.setRequestMethod("GET");
- + con.setRequestProperty("User-Agent", "Mozilla/5.0");
- + con.setConnectTimeout(5000);
- + responseCode = con.getResponseCode();
- + if (responseCode == HttpURLConnection.HTTP_OK)
- + {
- +
- + String inputLine;
- + StringBuffer response = new StringBuffer();
- + BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
- + while ((inputLine = in.readLine()) != null)
- + {
- + if (ordinal == 3)
- + {
- + if (inputLine.contains("Votes:"))
- + {
- + response.append(inputLine);
- + break;
- + }
- + }
- + if (ordinal == 7)
- + {
- + if (inputLine.contains("<b>Entradas "))
- + {
- + response.append(inputLine);
- + break;
- + }
- + }
- + }
- + in.close();
- + return response.toString();
- + }
- +
- + }
- + catch (Exception e)
- + {
- + LOGGER.warning(VoteUtil.Sites[ordinal] + " Say: An error ocurred " + e.getStackTrace());
- + return "";
- + }
- +
- + return "";
- + }
- +
- + public static final String between(String p1, String str, String p2)
- + {
- + String returnValue = "";
- + int i1 = str.indexOf(p1);
- + int i2 = str.indexOf(p2);
- + if ((i1 != -1) && (i2 != -1))
- + {
- + i1 = i1 + p1.length();
- + returnValue = str.substring(i1, i2);
- + }
- + return returnValue;
- + }
- +
- +}
- Index: head-src/com/l2jfrozen/gameserver/votesystem/Enum/voteSite.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/Enum/voteSite.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/Enum/voteSite.java (working copy)
- @@ -0,0 +1,19 @@
- +package com.l2jfrozen.gameserver.votesystem.Enum;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public enum voteSite
- +{
- + L2TOPGAMESERVER, // 0
- + ITOPZ, // 1
- + L2TOPCO, // 2
- + L2VOTES, // 3
- + HOPZONE, // 4
- + L2NETWORK, // 5
- + L2TOPSERVERS, // 6
- + TOPL2JBRASIL, // 7
- + MMOTOP, // 8
- + TOPZONE, // 9
- + L2SERVERS,// 10
- +}
- Index: head-src/com/l2jfrozen/gameserver/votesystem/Model/individualVoteResponse.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/Model/individualVoteResponse.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/Model/individualVoteResponse.java (working copy)
- @@ -0,0 +1,46 @@
- +package com.l2jfrozen.gameserver.votesystem.Model;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class individualVoteResponse
- +{
- + private boolean _isVoted;
- + private long _diffTime;
- + private long _voteSiteTime;
- +
- + public individualVoteResponse()
- + {
- +
- + }
- +
- + public void setIsVoted(boolean isVoted)
- + {
- + _isVoted = isVoted;
- + }
- +
- + public void setDiffTime(long diffTime)
- + {
- + _diffTime = diffTime;
- + }
- +
- + public void setVoteSiteTime(long voteSiteTime)
- + {
- + _voteSiteTime = voteSiteTime;
- + }
- +
- + public boolean getIsVoted()
- + {
- + return _isVoted;
- + }
- +
- + public long getDiffTime()
- + {
- + return _diffTime;
- + }
- +
- + public long getVoteSiteTime()
- + {
- + return _voteSiteTime;
- + }
- +}
- Index: head-src/com/l2jfrozen/FService.java
- ===================================================================
- --- head-src/com/l2jfrozen/FService.java (revision 1132)
- +++ head-src/com/l2jfrozen/FService.java (working copy)
- @@ -34,6 +34,7 @@
- public static final String QUESTION_FILE = "./config/questionwords.txt";
- public static final String HEXID_FILE = "./config/hexid.txt";
- public static final String TELNET_FILE = "./config/telnet.properties";
- + public static final String VOTE_SYSTEM_FILE = "./config/votesystem.properties";
- // head
- public static final String ALT_SETTINGS_FILE = "./config/head/altsettings.properties";
- Index: head-src/com/l2jfrozen/gameserver/util/Broadcast.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/util/Broadcast.java (revision 1132)
- +++ head-src/com/l2jfrozen/gameserver/util/Broadcast.java (working copy)
- @@ -35,10 +35,12 @@
- import org.apache.log4j.Logger;
- import com.l2jfrozen.Config;
- +import com.l2jfrozen.gameserver.enums.ChatType;
- import com.l2jfrozen.gameserver.model.L2Character;
- import com.l2jfrozen.gameserver.model.L2World;
- import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jfrozen.gameserver.network.serverpackets.CharInfo;
- +import com.l2jfrozen.gameserver.network.serverpackets.CreatureSay;
- import com.l2jfrozen.gameserver.network.serverpackets.L2GameServerPacket;
- import com.l2jfrozen.gameserver.network.serverpackets.RelationChanged;
- @@ -237,4 +239,8 @@
- onlinePlayer.sendPacket(mov);
- }
- }
- + public static void toAllOnlinePlayers(String text, boolean isCritical)
- + {
- + toAllOnlinePlayers(new CreatureSay(0, isCritical ? ChatType.CRITICAL_ANNOUNCE.ordinal() : ChatType.ANNOUNCEMENT.ordinal(), "", text));
- + }
- }
- Index: head-src/com/l2jfrozen/gameserver/model/actor/instance/L2NpcVoteRewardInstance.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/model/actor/instance/L2NpcVoteRewardInstance.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/model/actor/instance/L2NpcVoteRewardInstance.java (working copy)
- @@ -0,0 +1,114 @@
- +/*
- + * 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.l2jfrozen.gameserver.model.actor.instance;
- +
- +import com.l2jfrozen.Config;
- +import com.l2jfrozen.gameserver.datatables.sql.ItemTable;
- +import com.l2jfrozen.gameserver.network.serverpackets.NpcHtmlMessage;
- +import com.l2jfrozen.gameserver.templates.L2NpcTemplate;
- +import com.l2jfrozen.gameserver.votesystem.Enum.voteSite;
- +import com.l2jfrozen.gameserver.votesystem.Handler.voteManager;
- +import com.l2jfrozen.gameserver.votesystem.Model.Reward;
- +import com.l2jfrozen.gameserver.votesystem.VoteUtil.VoteSiteXml;
- +
- +/**
- + * @author escor
- + *
- + */
- +public class L2NpcVoteRewardInstance extends L2NpcInstance
- +{
- +
- + /**
- + * @param objectId
- + * @param template
- + */
- + public L2NpcVoteRewardInstance(int objectId, L2NpcTemplate template)
- + {
- + super(objectId, template);
- + // TODO Auto-generated constructor stub
- + }
- +
- +
- +
- + @Override
- + public void onBypassFeedback(L2PcInstance player, String command)
- + {
- + if (command == null)
- + {
- + return;
- + }
- + int Ordinalsite = Integer.parseInt(command);
- + voteManager.getInatance().getReward(player, Ordinalsite);
- + showChatWindow(player, 0);
- + super.onBypassFeedback(player, command);
- + }
- +
- + @Override
- + public void showChatWindow(L2PcInstance player, int val)
- + {
- + final NpcHtmlMessage html = new NpcHtmlMessage(0);
- + StringBuilder sb = new StringBuilder();
- + html.setFile(getHtmlPath(getNpcId(), 0));
- + for (voteSite vs : voteSite.values())
- + {
- + sb.append("<table bgcolor=000000 width=280><tr>");
- + sb.append("<td width=42><img src=\"icon.etc_treasure_box_i08\" width=32 height=32></td>");
- + sb.append("<td width=220><table width=220>");
- + sb.append("<tr><td><table width=220><tr><td width=145>On " + String.format("%s", VoteSiteXml.getInstance().getSiteName(vs.ordinal())) + "</td>");
- + if (voteManager.getInatance().checkIndividualAvailableVote(player, vs.ordinal()))
- + {
- + sb.append("<td width=75>" + String.format("<button value=\"Get reward\" action=\"bypass -h vote_%s_site %s\" height=17 width=64 back=\"sek.cbui94\" fore=\"sek.cbui92\">", getObjectId(), vs.ordinal()) + "</td>");
- + }
- + else
- + {
- + sb.append(String.format("<td width=75 align=center><font color=C68E00>%s</font></td>", voteManager.getInatance().getTimeRemainingWithSampleFormat(player, vs.ordinal())));
- + }
- + sb.append("</tr></table></td></tr>");
- + sb.append("<tr><td><table width=220><tr>");
- + int i = 0;
- + for (Reward r : VoteSiteXml.getInstance().getRewards(vs.ordinal()))
- + {
- + sb.append(String.format("<td width=110 height=32 align=center><font color=BFAF00>%s x%s</font></td>", ItemTable.getInstance().getTemplate(r.getItemId()).getName(), r.getItemCount()));
- + i++;
- + if ((i % 2) == 0)
- + {
- + sb.append("</tr><tr>");
- + }
- + }
- + sb.append("</tr></table></td></tr></table></td></tr></table><br>");
- + }
- + html.replace("%everyXtime%", Config.INTERVAL_TO_NEXT_VOTE / (3600 * 1000));
- + html.replace("%enablevote%", sb.toString());
- + html.replace("%accountName%", player.getName());
- + player.sendPacket(html);
- + }
- +
- + @Override
- + public String getHtmlPath(int npcId, int val)
- + {
- + String filename = "";
- + if (val == 0)
- + {
- + filename = "" + npcId;
- + }
- + else
- + {
- + filename = npcId + "-" + val;
- + }
- +
- + return "data/html/mods/votesystem/" + filename + ".htm";
- + }
- +
- +}
- Index: head-src/com/l2jfrozen/gameserver/votesystem/Handler/voteManager.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/Handler/voteManager.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/Handler/voteManager.java (working copy)
- @@ -0,0 +1,417 @@
- +package com.l2jfrozen.gameserver.votesystem.Handler;
- +
- +import java.util.HashSet;
- +import java.util.Map;
- +import java.util.concurrent.ConcurrentHashMap;
- +import java.util.concurrent.ScheduledFuture;
- +
- +import com.l2jfrozen.gameserver.votesystem.Model.Reward;
- +import com.l2jfrozen.gameserver.votesystem.Model.globalVote;
- +import com.l2jfrozen.gameserver.votesystem.Model.individualVote;
- +import com.l2jfrozen.gameserver.votesystem.Model.individualVoteResponse;
- +import com.l2jfrozen.gameserver.votesystem.VoteUtil.VoteSiteXml;
- +import com.l2jfrozen.gameserver.votesystem.VoteUtil.VoteUtil;
- +import com.l2jfrozen.Config;
- +import com.l2jfrozen.gameserver.model.L2World;
- +import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
- +import com.l2jfrozen.gameserver.network.L2GameClient;
- +import com.l2jfrozen.gameserver.network.SystemMessageId;
- +import com.l2jfrozen.gameserver.network.serverpackets.ItemList;
- +import com.l2jfrozen.gameserver.network.serverpackets.SystemMessage;
- +import com.l2jfrozen.gameserver.thread.ThreadPoolManager;
- +import com.l2jfrozen.gameserver.util.Broadcast;
- +import com.l2jfrozen.gameserver.votesystem.DB.globalVoteDB;
- +import com.l2jfrozen.gameserver.votesystem.DB.individualVoteDB;
- +import com.l2jfrozen.gameserver.votesystem.Enum.voteSite;
- +
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public final class voteManager extends voteHandler
- +{
- + private ScheduledFuture<?> _saveGlobalVotes;
- + private ScheduledFuture<?> _updateIndividualVotes;
- + private ScheduledFuture<?> _autoGlobalVotesReward;
- +
- + private Map<String, individualVote[]> _foundVoters;
- + private globalVote[] _globalVotes = new globalVote[voteSite.values().length];
- +
- + public voteManager()
- + {
- + _foundVoters = new ConcurrentHashMap<>();
- + loadVotes();
- + loadGlobalVotes();
- + checkAllResponseGlobalVotes();
- + stopAutoTasks();
- +
- + if (Config.ENABLE_INDIVIDUAL_VOTE && Config.ENABLE_VOTE_SYSTEM)
- + {
- + _updateIndividualVotes = ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new AutoUpdateIndividualVotesTask(), 30000, Config.NEXT_TIME_TO_AUTO_UPDATE_INDIVIDUAL_VOTES);
- + }
- + if (Config.ENABLE_GLOBAL_VOTE && Config.ENABLE_VOTE_SYSTEM)
- + {
- + _autoGlobalVotesReward = ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new AutoGlobalVoteRewardTask(), 10000, Config.NEXT_TIME_TO_CHECK_AUTO_GLOBAL_VOTES_REWARD);
- + _saveGlobalVotes = ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new AutoSaveGlobalVotesTask(), 30000, Config.NEXT_TIME_TO_AUTO_UPDATE_TOTAL_VOTE);
- + }
- + }
- +
- + private void stopAutoTasks()
- + {
- + if (_saveGlobalVotes != null)
- + {
- + _saveGlobalVotes.cancel(true);
- + _saveGlobalVotes = null;
- + }
- + if (_updateIndividualVotes != null)
- + {
- + _updateIndividualVotes.cancel(true);
- + _updateIndividualVotes = null;
- + }
- + if (_autoGlobalVotesReward != null)
- + {
- + _autoGlobalVotesReward.cancel(true);
- + _autoGlobalVotesReward = null;
- + }
- + }
- +
- + public void getReward(L2PcInstance player, int ordinalSite)
- + {
- + String ip = existIp(player);
- + if (ip == null)
- + {
- + return;
- + }
- + individualVoteResponse ivr = getIndividualVoteResponse(ordinalSite, ip, player.getAccountName());
- + if (ivr == null)
- + {
- + player.sendMessage("We were unable to verify your vote with: " + VoteSiteXml.getInstance().getSiteName(ordinalSite) + ", please try again");
- + return;
- + }
- +
- + if (getTimeRemaining(new individualVote(ip, ivr.getVoteSiteTime(), ordinalSite, false)) < 0)
- + {
- + player.sendMessage("We were unable to verify your vote with: " + VoteSiteXml.getInstance().getSiteName(ordinalSite) + ", please try again");
- + return;
- + }
- + if (!ivr.getIsVoted())
- + {
- + player.sendMessage(String.format("You haven't vote on %s yet!", VoteSiteXml.getInstance().getSiteName(ordinalSite)));
- + return;
- + }
- + if (!checkIndividualAvailableVote(player, ordinalSite))
- + {
- + player.sendMessage(String.format("You can get the reward again on %s at %s", VoteSiteXml.getInstance().getSiteName(ordinalSite), getTimeRemainingWithSampleFormat(player, ordinalSite)));
- + return;
- + }
- + individualVote iv = new individualVote(ip, ivr.getDiffTime(), ivr.getVoteSiteTime(), ordinalSite, false);
- +
- + individualVote[] aiv;
- + if (!_foundVoters.containsKey(ip))
- + {
- + aiv = new individualVote[voteSite.values().length];
- + iv.setAlreadyRewarded(true);
- + aiv[ordinalSite] = iv;
- + _foundVoters.put(ip, aiv);
- + }
- + else
- + {
- + aiv = _foundVoters.get(ip);
- + iv.setAlreadyRewarded(true);
- + aiv[ordinalSite] = iv;
- + _foundVoters.put(ip, aiv);
- +
- + }
- + for (Reward reward : VoteSiteXml.getInstance().getRewards(ordinalSite))
- + {
- + player.getInventory().addItem("VoteSystem", reward.getItemId(), reward.getItemCount(), player, null);
- + player.sendPacket(new SystemMessage(SystemMessageId.EARNED_S2_S1_S).addItemName(reward.getItemId()).addNumber(reward.getItemCount()));
- + }
- + player.sendMessage(String.format("%s: Thank you for voting for our server, your reward has been delivered.", VoteSiteXml.getInstance().getSiteName(ordinalSite)));
- + player.sendPacket(new ItemList(player, true));
- + return;
- + }
- +
- + public boolean checkIndividualAvailableVote(L2PcInstance player, int ordinalSite)
- + {
- + String ip = existIp(player);
- + if (_foundVoters.containsKey(ip))
- + {
- + individualVote[] ivs = _foundVoters.get(ip);
- + if (ivs[ordinalSite] == null)
- + {
- + return true;
- + }
- + if (ivs[ordinalSite] != null)
- + {
- + individualVote iv = ivs[ordinalSite];
- + if (getTimeRemaining(iv) < 0)
- + {
- + return true;
- + }
- + }
- + }
- + else
- + {
- + return true;
- + }
- +
- + return false;
- + }
- +
- + public long getTimeRemaining(individualVote iv)
- + {
- + long timeRemaining = 0L;
- + timeRemaining = ((iv.getVotingTimeSite() + Config.INTERVAL_TO_NEXT_VOTE) - ((iv.getDiffTime() > 0) ? (System.currentTimeMillis() + iv.getDiffTime()) : (System.currentTimeMillis() - iv.getDiffTime())));
- + return timeRemaining;
- + }
- +
- + public String getTimeRemainingWithSampleFormat(L2PcInstance player, int ordinalSite)
- + {
- + String ip = existIp(player);
- + String timeRemainingWithSampleFormat = "";
- + if (_foundVoters.containsKey(ip))
- + {
- + individualVote[] ivs = _foundVoters.get(ip);
- + if (ivs[ordinalSite] != null)
- + {
- + individualVote iv = ivs[ordinalSite];
- + long timeRemaining = getTimeRemaining(iv);
- + if (timeRemaining > 0)
- + {
- + timeRemainingWithSampleFormat = CalculateTimeRemainingWithSampleDateFormat(timeRemaining);
- + return timeRemainingWithSampleFormat;
- + }
- + }
- + }
- + return timeRemainingWithSampleFormat;
- + }
- +
- + public String CalculateTimeRemainingWithSampleDateFormat(long timeRemaining)
- + {
- + long t = timeRemaining / 1000;
- + int hours = Math.round(((t / 3600) % 24));
- + int minutes = Math.round((t / 60) % 60);
- + int seconds = Math.round(t % 60);
- + return String.format("%sH:%sm:%ss", hours, minutes, seconds);
- + }
- +
- + public String existIp(L2PcInstance p)
- + {
- +
- + L2GameClient client = p.getClient();
- + if ((client.getConnection().getInetAddress() != null) && (client.getActiveChar() != null) && !client.isDetached())
- + {
- + try
- + {
- + return client.getConnection().getInetAddress().getHostAddress();
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- + }
- + return null;
- +
- + }
- +
- + public final void loadVotes()
- + {
- + _foundVoters = individualVoteDB.getInstance().getVotesDB();
- + }
- +
- + protected void loadGlobalVotes()
- + {
- + _globalVotes = globalVoteDB.getInstance().getGlobalVotes();
- + }
- +
- + public void saveVotes()
- + {
- + individualVoteDB.getInstance().SaveVotes(_foundVoters);
- + }
- +
- + protected void AutoGlobalVoteReward()
- + {
- + final HashSet<String> ipList = new HashSet<>();
- + for (final voteSite vs : voteSite.values())
- + {
- +
- + new Thread(new Runnable() {
- +
- + @Override
- + public void run()
- + {
- + AutoGlobalVoteRewardCheck(vs.ordinal(),ipList);
- +
- + }
- +
- + }
- +
- + ).start();
- +
- + }
- + }
- +
- + /**
- + * @param ordinal
- + * @param ipList
- + */
- + protected void AutoGlobalVoteRewardCheck(int ordinal, HashSet<String> ipList)
- + {
- + checkNewUpdate(ordinal);
- + if (_globalVotes[ordinal].getCurrentVotes() >= (_globalVotes[ordinal].getVotesLastReward() + (ordinal == voteSite.L2SERVERS.ordinal() ? 25 * Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD : Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD)))
- + {
- + _globalVotes[ordinal].setVotesLastReward(_globalVotes[ordinal].getVotesLastReward() + (ordinal == voteSite.L2SERVERS.ordinal() ? 25 * Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD : Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD));
- + for (L2PcInstance player : L2World.getInstance().getAllPlayers())
- + {
- + String ip = existIp(player);
- + if (ip == null)
- + {
- + continue;
- + }
- + if (ipList.contains(ip))
- + {
- + continue;
- + }
- + for (Reward reward : VoteSiteXml.getInstance().getRewards(11))
- + {
- + player.getInventory().addItem("VoteSystem: ", reward.getItemId(), reward.getItemCount(), player, null);
- + player.sendPacket(new SystemMessage(SystemMessageId.EARNED_S2_S1_S).addItemName(reward.getItemId()).addNumber(reward.getItemCount()));
- + }
- + ipList.add(ip);
- + player.sendPacket(new ItemList(player, true));
- + }
- + Broadcast.toAllOnlinePlayers(VoteUtil.Sites[ordinal] + ": All players has been rewarded, please check your inventory",true);
- + }
- + else
- + {
- + String encourage = "";
- + int nextReward = _globalVotes[ordinal].getVotesLastReward() + (ordinal == voteSite.L2SERVERS.ordinal() ? 25 * Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD : Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD);
- + encourage = String.format("Vote for %s current Votes: %s, next quantity of votes to reward : %s, need votes to next reward: %s", VoteUtil.Sites[ordinal], _globalVotes[ordinal].getCurrentVotes(), nextReward, nextReward - _globalVotes[ordinal].getCurrentVotes());
- + Broadcast.toAllOnlinePlayers(encourage,true);
- + }
- +
- + }
- +
- + protected void AutoSaveGlobalVotes()
- + {
- + globalVoteDB.getInstance().saveGlobalVotes(_globalVotes);
- + }
- +
- + protected synchronized void AutoUpdateIndividualVotes()
- + {
- + AutoCleanInnecesaryIndividualVotes();
- + individualVoteDB.getInstance().SaveVotes(_foundVoters);
- + }
- +
- + protected synchronized void AutoCleanInnecesaryIndividualVotes()
- + {
- + HashSet<individualVote> removeVotes = new HashSet<>();
- + for (Map.Entry<String, individualVote[]> ivs : _foundVoters.entrySet())
- + {
- + for (individualVote individualvote : ivs.getValue())
- + {
- + if (individualvote == null)
- + {
- + continue;
- + }
- + if (getTimeRemaining(individualvote) < 0)
- + {
- + removeVotes.add(individualvote);
- + if (_foundVoters.containsKey(individualvote.getVoterIp()))
- + {
- + if (_foundVoters.get(individualvote.getVoterIp())[individualvote.getVoteSite()] != null)
- + {
- + _foundVoters.get(individualvote.getVoterIp())[individualvote.getVoteSite()] = null;
- + }
- + }
- + }
- + }
- + }
- + individualVoteDB.getInstance().DeleteVotes(removeVotes);
- + }
- +
- + public void checkAllResponseGlobalVotes()
- + {
- + for (final voteSite vs : voteSite.values())
- + {
- + new Thread(new Runnable() {
- +
- + @Override
- + public void run()
- + {
- + checkNewUpdate(vs.ordinal());
- +
- + }
- +
- + }).start();
- + }
- + }
- +
- +
- + public void checkNewUpdate(int ordinalSite)
- + {
- + int globalVotesResponse = getGlobalVotesResponse(ordinalSite);
- + if (globalVotesResponse == -1)
- + {
- + }
- + _globalVotes[ordinalSite].setCurrentVotes(globalVotesResponse);
- + int last = globalVotesResponse - (ordinalSite == voteSite.L2SERVERS.ordinal() ? 25 * Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD : Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD);
- + if (last < 0)
- + {
- + _globalVotes[ordinalSite].setVotesLastReward(0);
- + }
- + if ((_globalVotes[ordinalSite].getVotesLastReward() + (ordinalSite == voteSite.L2SERVERS.ordinal() ? 25 * Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD : Config.GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD)) < globalVotesResponse)
- + {
- + _globalVotes[ordinalSite].setVotesLastReward(globalVotesResponse);
- + }
- + return;
- + }
- +
- + public void Shutdown()
- + {
- + AutoSaveGlobalVotes();
- + AutoCleanInnecesaryIndividualVotes();
- + AutoUpdateIndividualVotes();
- + }
- +
- + protected class AutoGlobalVoteRewardTask implements Runnable
- + {
- +
- + @Override
- + public void run()
- + {
- + AutoGlobalVoteReward();
- +
- + }
- +
- + }
- +
- + protected class AutoSaveGlobalVotesTask implements Runnable
- + {
- +
- + @Override
- + public void run()
- + {
- + AutoSaveGlobalVotes();
- +
- + }
- +
- + }
- +
- + protected class AutoUpdateIndividualVotesTask implements Runnable
- + {
- +
- + @Override
- + public void run()
- + {
- + AutoUpdateIndividualVotes();
- +
- + }
- +
- + }
- +
- + public static voteManager getInatance()
- + {
- + return SingleHolder.INSTANCE;
- + }
- +
- + private static class SingleHolder
- + {
- + protected static final voteManager INSTANCE = new voteManager();
- + }
- +}
- \ No newline at end of file
- Index: head-src/com/l2jfrozen/gameserver/GameServer.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/GameServer.java (revision 1132)
- +++ head-src/com/l2jfrozen/gameserver/GameServer.java (working copy)
- @@ -146,6 +146,8 @@
- import com.l2jfrozen.gameserver.thread.daemons.PcPoint;
- import com.l2jfrozen.gameserver.util.DynamicExtension;
- import com.l2jfrozen.gameserver.util.sql.SQLQueue;
- +import com.l2jfrozen.gameserver.votesystem.Handler.voteManager;
- +import com.l2jfrozen.gameserver.votesystem.VoteUtil.VoteSiteXml;
- import com.l2jfrozen.netcore.NetcoreConfig;
- import com.l2jfrozen.netcore.SelectorConfig;
- import com.l2jfrozen.netcore.SelectorThread;
- @@ -430,6 +432,18 @@
- UserCommandHandler.getInstance();
- VoicedCommandHandler.getInstance();
- + Util.printSection("Vote Reward System");
- + if (Config.ENABLE_VOTE_SYSTEM)
- + {
- + voteManager.getInatance();
- + LOGGER.info("======================Vote System Enabled=========================");
- + VoteSiteXml.getInstance();
- + }
- + else
- + {
- + LOGGER.info("======================Vote System Disabled=========================");
- + }
- +
- LOGGER.info("AutoChatHandler : Loaded " + AutoChatHandler.getInstance().size() + " handlers in total.");
- LOGGER.info("AutoSpawnHandler : Loaded " + AutoSpawn.getInstance().size() + " handlers in total.");
- Index: head-src/com/l2jfrozen/gameserver/votesystem/Handler/voteHandler.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/Handler/voteHandler.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/Handler/voteHandler.java (working copy)
- @@ -0,0 +1,509 @@
- +package com.l2jfrozen.gameserver.votesystem.Handler;
- +
- +import java.io.BufferedReader;
- +import java.io.DataOutputStream;
- +import java.io.InputStreamReader;
- +import java.net.HttpURLConnection;
- +import java.net.URL;
- +import java.nio.charset.Charset;
- +import java.text.ParseException;
- +import java.text.SimpleDateFormat;
- +import java.util.logging.Logger;
- +
- +import com.l2jfrozen.Config;
- +import com.l2jfrozen.gameserver.votesystem.Enum.voteSite;
- +import com.l2jfrozen.gameserver.votesystem.Model.individualVoteResponse;
- +import com.l2jfrozen.gameserver.votesystem.VoteUtil.VoteSiteXml;
- +import com.l2jfrozen.gameserver.votesystem.VoteUtil.VoteUtil;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class voteHandler
- +{
- + public static final Logger LOGGER = Logger.getLogger(voteHandler.class.getName());
- +
- + protected static String getNetWorkResponse(String URL, int ordinal)
- + {
- + if ((ordinal == voteSite.L2NETWORK.ordinal()) && ("".equals(Config.VOTE_NETWORK_API_KEY) || "".equals(Config.VOTE_NETWORK_LINK) || "".equals(Config.VOTE_NETWORK_USER_NAME)))
- + {
- + return "";
- + }
- +
- + StringBuffer response = new StringBuffer();
- + try
- + {
- + String API_URL = Config.VOTE_NETWORK_LINK;
- + String detail = URL;
- + String postParameters = "";
- + postParameters += "apiKey=" + VoteUtil.between("apiKey=", detail, "&type=");
- + postParameters += "&type=" + VoteUtil.between("&type=", detail, "&player");
- + String beginIndexPlayer = "&player=";
- + String player = detail.substring(detail.indexOf(beginIndexPlayer) + beginIndexPlayer.length());
- +
- + if ((player != null) && !player.equals(""))
- + {
- + postParameters += "&player=" + player;
- + }
- +
- + byte[] postData = postParameters.getBytes(Charset.forName("UTF-8"));
- + URL url = new URL(API_URL);
- + HttpURLConnection con = (HttpURLConnection) url.openConnection();
- + con.setConnectTimeout(5000);
- + con.setRequestMethod("POST");
- + con.setRequestProperty("Content-Length", Integer.toString(postData.length));
- + con.setRequestProperty("User-Agent", "Mozilla/5.0");
- + con.setDoOutput(true);
- +
- + DataOutputStream os = new DataOutputStream(con.getOutputStream());
- + os.write(postData);
- + os.flush();
- + os.close();
- +
- + BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
- + String inputLine;
- +
- + while ((inputLine = in.readLine()) != null)
- + {
- + response.append(inputLine);
- + }
- + in.close();
- +
- + return response.toString();
- +
- + }
- + catch (Exception e)
- + {
- + LOGGER.warning(VoteUtil.Sites[ordinal] + " Say: An error ocurred " + e.getCause());
- + return "";
- + }
- + }
- +
- + protected static String getResponse(String Url, int ordinal)
- + {
- + if ((ordinal == voteSite.L2NETWORK.ordinal()) && ("".equals(Config.VOTE_NETWORK_API_KEY) || "".equals(Config.VOTE_NETWORK_LINK) || "".equals(Config.VOTE_NETWORK_USER_NAME)))
- + {
- + return "";
- + }
- +
- + try
- + {
- + int responseCode = 0;
- + URL objUrl = new URL(Url);
- + HttpURLConnection con = (HttpURLConnection) objUrl.openConnection();
- + con.setRequestMethod("GET");
- + con.setRequestProperty("User-Agent", "Mozilla/5.0");
- + con.setConnectTimeout(5000);
- + responseCode = con.getResponseCode();
- + if (responseCode == HttpURLConnection.HTTP_OK)
- + {
- + String inputLine;
- + StringBuffer response = new StringBuffer();
- + BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
- + while ((inputLine = in.readLine()) != null)
- + {
- + response.append(inputLine);
- + }
- + in.close();
- + return response.toString();
- + }
- +
- + }
- + catch (Exception e)
- + {
- + LOGGER.warning(VoteSiteXml.getInstance().getSiteName(ordinal) + " Say: An error ocurred " + e.getCause());
- + return "";
- + }
- +
- + return "";
- + }
- +
- + public static individualVoteResponse getIndividualVoteResponse(int ordinal, String ip, String AccountName)
- + {
- + String response = "";
- + boolean isVoted = false;
- + long voteSiteTime = 0L, diffTime = 0L;
- + SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
- + individualVoteResponse ivr = new individualVoteResponse();
- +
- + switch (ordinal)
- + {
- + case 0:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(VoteUtil.between("\"already_voted\":", response, ",\"vote_time\""));
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = format.parse(VoteUtil.between("\"vote_time\":\"", response, "\",\"server_time\"")).getTime();
- + diffTime = System.currentTimeMillis() - format.parse(VoteUtil.between("\"server_time\":\"", response, "\"}")).getTime();
- + }
- + catch (ParseException e)
- + {
- + e.printStackTrace();
- + }
- + }
- + break;
- +
- + case 1:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(VoteUtil.between("\"isvoted\":", response.toString().toLowerCase().replaceAll("\n", "").replaceAll(" ", ""), ",\"votetime").replaceAll("\"", ""));
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = (Long.parseLong(VoteUtil.between("\"votetime\":", response.toString().toLowerCase().replaceAll("\n", "").replaceAll(" ", ""), ",\"servertime"))) * 1000;
- + diffTime = System.currentTimeMillis() - ((Long.parseLong(VoteUtil.between("\"servertime\":", response.toLowerCase().replaceAll("\n", "").replaceAll(" ", ""), "}"))) * 1000);
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- + }
- + break;
- +
- + case 2:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(response);
- + if (isVoted)
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + break;
- +
- + case 3:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = ((VoteUtil.between("\"status\":\"", response, "\",\"date\"") != "") && (Integer.parseInt(VoteUtil.between("\"status\":\"", response, "\",\"date\"")) == 1)) ? true : false;
- + if (isVoted)
- + {
- + String dateString = VoteUtil.between("\"date\":\"", response, "\"}]");
- + try
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- +
- + }
- + break;
- +
- + case 4:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(VoteUtil.between("\"voted\":", response, ",\"voteTime\""));
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = format.parse(VoteUtil.between("\"voteTime\":\"", response, "\",\"hopzoneServerTime\"")).getTime();
- + diffTime = System.currentTimeMillis() - format.parse(VoteUtil.between("\"hopzoneServerTime\":\"", response, "\",\"status_code\":")).getTime();
- + }
- + catch (ParseException e)
- + {
- + e.printStackTrace();
- + }
- + }
- + break;
- +
- + case 5:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (!"".equals(response) && (Integer.parseInt(response) == 1)) ? true : false;
- + if (isVoted)
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + break;
- +
- + case 6:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = ("".equals(response)) ? false : Boolean.parseBoolean(VoteUtil.between("\"voted\":", response, ",\"voteTime\""));
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- +
- + }
- + break;
- +
- + case 7:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = ((VoteUtil.between("\"status\":\"", response, "\",\"server_time\"") != "") && (Integer.parseInt(VoteUtil.between("\"status\":\"", response, "\",\"server_time\"")) == 1)) ? true : false;
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- + }
- + break;
- +
- + case 8:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(VoteUtil.between("\"is_voted\":", response, ",\"vote_time\""));
- + if (isVoted)
- + {
- + try
- + {
- + voteSiteTime = (Long.parseLong(VoteUtil.between("\"vote_time\":", response, ",\"server_time\""))) * 1000;
- + diffTime = System.currentTimeMillis() - (Long.parseLong(VoteUtil.between("\"server_time\":", response, "}}")) * 1000);
- + }
- + catch (Exception e)
- + {
- + e.printStackTrace();
- + }
- + }
- + break;
- +
- + case 9:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(VoteUtil.between("\"isVoted\": ", response, ",\"voteTime\""));
- + if (isVoted)
- + {
- + voteSiteTime = Long.parseLong(VoteUtil.between("\"voteTime\": \"", response, "\",\"serverTime\"")) * 1000;
- + diffTime = System.currentTimeMillis() - (Long.parseLong(VoteUtil.between("\"serverTime\": ", response, "}}")) * 1000);
- + }
- + break;
- +
- + case 10:
- + response = getResponse(getIndividualUrl(ordinal, ip, null), ordinal);
- + isVoted = (response == "") ? false : Boolean.parseBoolean(response);
- + if (isVoted)
- + {
- + voteSiteTime = System.currentTimeMillis();
- + diffTime = 0;
- + }
- + break;
- +
- + }
- + if (!response.equals(""))
- + {
- + ivr.setIsVoted(isVoted);
- + ivr.setDiffTime(diffTime);
- + ivr.setVoteSiteTime(voteSiteTime);
- + return ivr;
- + }
- + return null;
- + }
- +
- + public int getGlobalVotesResponse(int ordinal)
- + {
- +
- + String response = "";
- + int totalVotes = 0;
- +
- + switch (ordinal)
- + {
- + case 0:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("\"getVotes\":", response, "}");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 1:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("server_votes\":", response.replace(" ", ""), ",\"server_rank");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 2:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 3:
- + response = VoteUtil.getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("Votes:</th><th><a class='votes'>", response, "</a></th></tr><tr><th>Clicks:");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 4:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("\"totalvotes\":", response, ",\"status_code\"");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 5:
- + String responseNetwork = getNetWorkResponse(getGlobalUrl(ordinal), ordinal);
- + totalVotes = (!"".equals(responseNetwork)) ? Integer.parseInt(responseNetwork) : -1;
- + break;
- +
- + case 6:
- + response = VoteUtil.getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("VOTE <span>", response.toString().replaceAll("\n", ""), "</span>");
- +
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 7:
- + response = VoteUtil.getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("nicas:</b> ", response, "<br /><br />");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 8:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("\"monthly_votes\":", response, "}}");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 9:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + response = VoteUtil.between("\"totalVotes\":\"", response, "\",\"serverRank\"");
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- +
- + case 10:
- + response = getResponse(getGlobalUrl(ordinal), ordinal);
- + totalVotes = (!"".equals(response)) ? Integer.parseInt(response) : -1;
- + break;
- + }
- +
- + return totalVotes;
- + }
- +
- + public static String getIndividualUrl(int ordinal, String ip, String AccountName)
- + {
- + String url = "";
- + ip = (Config.TEST_IP.equalsIgnoreCase("off") || Config.TEST_IP.equalsIgnoreCase("")) ? ip : Config.TEST_IP;
- + switch (ordinal)
- + {
- + case 0:
- + // l2.topgameserver.net
- + url = String.format("%sAPI_KEY=%s/getData/%s", Config.VOTE_LINK_TGS, Config.TGS_API_KEY, ip);
- + break;
- +
- + case 1:
- + // itopz.com
- + url = String.format("%s%s/%s/%s", Config.VOTE_LINK_ITOPZ, Config.ITOPZ_API_KEY, Config.ITOPZ_SRV_ID, ip);
- + break;
- +
- + case 2:
- + // l2top.co
- + url = String.format("%sVoteCheck.php?id=%s&ip=%s", Config.VOTE_LINK_TOP_CO, Config.TOP_CO_SRV_ID, ip);
- + break;
- +
- + case 3:
- + // l2votes.com
- + url = String.format("%sapi.php?apiKey=%s&ip=%s", Config.VOTE_LINK_VTS, Config.VTS_API_KEY, ip);
- + break;
- +
- + case 4:
- + // hopzone.net
- + url = String.format("%svote?token=%s&ip_address=%s", Config.VOTE_LINK_HZ, Config.HZ_API_KEY, ip);
- + break;
- +
- + case 5:
- + // l2network.eu
- + url = String.format("https://l2network.eu/index.php?a=in&u=%s&ipc=%s", Config.VOTE_NETWORK_USER_NAME, ip);
- + break;
- +
- + case 6:
- + // l2topservers.com
- + url = String.format("%stoken=%s&ip=%s", Config.VOTE_LINK_TSS, Config.TSS_API_TOKEN, ip);
- + break;
- +
- + case 7:
- + // top.l2jbrasil.com
- + url = String.format("%susername=%s&ip=%s&type=json", Config.BRASIL_VOTE_LINK, Config.BRASIL_USER_NAME, ip);
- + break;
- +
- + case 8:
- + // mmotop
- + url = String.format("%s%s/ip/%s", Config.VOTE_LINK_MMOTOP, Config.MMOTOP_API_KEY, ip);
- + break;
- +
- + case 9:
- + // topzone.com
- + url = String.format("%svote?token=%s&ip=%s", Config.VOTE_LINK_TZ, Config.TZ_API_KEY, ip);
- + break;
- +
- + case 10:
- + // l2servers.com
- + url = String.format("%scheckip.php?hash=%s&server_id=%s&ip=%s", Config.VOTE_LINK_SERVERS, Config.SERVERS_HASH_CODE, Config.SERVERS_SRV_ID, ip);
- + break;
- + }
- +
- + return url;
- + }
- +
- + public String getGlobalUrl(int ordinal)
- + {
- + String url = "";
- +
- + switch (ordinal)
- + {
- + case 0:
- + // l2.topgameserver.net
- + url = String.format("%sAPI_KEY=%s/getData", Config.VOTE_LINK_TGS, Config.TGS_API_KEY);
- + break;
- +
- + case 1:
- + // itopz.com
- + url = String.format("%s%s/%s", Config.VOTE_LINK_ITOPZ, Config.ITOPZ_API_KEY, Config.ITOPZ_SRV_ID);
- + break;
- +
- + case 2:
- + // l2top.co
- + url = String.format("%sVoteCheck_Total.php?id=%s", Config.VOTE_LINK_TOP_CO, Config.TOP_CO_SRV_ID);
- + break;
- +
- + case 3:
- + // l2votes.com
- + url = String.format("%sserverPage.php?sid=%s", Config.VOTE_LINK_VTS, Config.VTS_SID);
- + break;
- +
- + case 4:
- + // hopzone.net
- + url = String.format("%svotes?token=%s", Config.VOTE_LINK_HZ, Config.HZ_API_KEY);
- + break;
- +
- + case 5:
- + // l2network.eu
- + url = String.format("apiKey=%s&type=%s&player=", Config.VOTE_NETWORK_API_KEY, 1);
- + break;
- +
- + case 6:
- + // l2topservers
- + url = String.format("https://l2topservers.com/l2top/%s/%s", Config.TS_SRV_ID, Config.TS_DOMAIN_NAME);
- + break;
- +
- + case 7:
- + // top.l2jbrasil.com
- + url = String.format("https://top.l2jbrasil.com/index.php?a=stats&u=%s", Config.BRASIL_USER_NAME);
- + break;
- +
- + case 8:
- + // mmotop.eu/l2/
- + url = String.format("%s%s/info/", Config.VOTE_LINK_MMOTOP, Config.MMOTOP_API_KEY);
- + break;
- +
- + case 9:
- + // l2topzone.com
- + url = String.format("%sserver_%s/getServerData", Config.VOTE_LINK_TZ, Config.TZ_API_KEY);
- + break;
- +
- + case 10:
- + // l2servers.com
- + url = String.format("%syearlyvotes.php?server_id=%s", Config.VOTE_LINK_SERVERS, Config.SERVERS_SRV_ID);
- + break;
- + }
- +
- + return url;
- + }
- +}
- \ No newline at end of file
- Index: head-src/com/l2jfrozen/Config.java
- ===================================================================
- --- head-src/com/l2jfrozen/Config.java (revision 1132)
- +++ head-src/com/l2jfrozen/Config.java (working copy)
- import java.util.Properties;
- +import java.util.concurrent.TimeUnit;
- import java.util.logging.Level;
- @@ -55,6 +55,111 @@
- {
- private static final Logger LOGGER = Logger.getLogger(Config.class);
- +
- +
- + // ---------------------------------------------------
- + // VOTE SYSTEM
- + // ---------------------------------------------------
- + public static boolean ENABLE_VOTE_SYSTEM;
- + public static boolean ENABLE_INDIVIDUAL_VOTE;
- + public static boolean ENABLE_GLOBAL_VOTE;
- + public static long NEXT_TIME_TO_AUTO_UPDATE_TOTAL_VOTE;
- + public static long NEXT_TIME_TO_AUTO_UPDATE_INDIVIDUAL_VOTES;
- + public static long NEXT_TIME_TO_AUTO_CLEAN_INECESARY_VOTES;
- + public static long NEXT_TIME_TO_CHECK_AUTO_GLOBAL_VOTES_REWARD;
- + public static long INTERVAL_TO_NEXT_VOTE;
- + public static int GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD;
- + public static boolean ENABLE_VOTING_COMMAND;
- + public static String VOTING_COMMAND;
- + public static String VOTE_LINK_TGS;
- + public static String TGS_API_KEY;
- + public static String VOTE_LINK_TOP_CO;
- + public static String TOP_CO_SRV_ID;
- + public static String VOTE_LINK_ITOPZ;
- + public static String ITOPZ_API_KEY;
- + public static String ITOPZ_SRV_ID;
- + public static String VOTE_LINK_VTS;
- + public static String VTS_API_KEY;
- + public static String VTS_SID;
- + public static String VOTE_LINK_HZ;
- + public static String HZ_API_KEY;
- + public static String VOTE_NETWORK_LINK;
- + public static String VOTE_NETWORK_USER_NAME;
- + public static String VOTE_NETWORK_API_KEY;
- + public static String VOTE_LINK_TSS;
- + public static String TSS_API_TOKEN;
- + public static String TS_SRV_ID;
- + public static String TS_DOMAIN_NAME;
- + public static String BRASIL_VOTE_LINK;
- + public static String BRASIL_USER_NAME;
- + public static String VOTE_LINK_MMOTOP;
- + public static String MMOTOP_API_KEY;
- + public static String VOTE_LINK_TZ;
- + public static String TZ_API_KEY;
- + public static String VOTE_LINK_SERVERS;
- + public static String SERVERS_HASH_CODE;
- + public static String SERVERS_SRV_ID;
- + public static String TEST_IP;
- +
- + public static void loadVoteConfig() {
- + final String VOTE = FService.VOTE_SYSTEM_FILE;
- +
- + try {
- + final Properties VoteSettings = new Properties();
- + final InputStream is = new FileInputStream(new File(VOTE));
- + VoteSettings.load(is);
- + is.close();
- + // ===============================================================
- +
- + ENABLE_VOTE_SYSTEM = Boolean.parseBoolean(VoteSettings.getProperty("EnableVoteSettings", "true"));
- + ENABLE_INDIVIDUAL_VOTE = Boolean.parseBoolean(VoteSettings.getProperty("EnableIndividualVote", "true"));
- + ENABLE_GLOBAL_VOTE = Boolean.parseBoolean(VoteSettings.getProperty("EnableGlobalVote", "true"));
- + NEXT_TIME_TO_AUTO_UPDATE_TOTAL_VOTE = TimeUnit.MINUTES.toMillis(Long.parseLong(votesystem.getProperty("NextTimeToAutoUpdateTotalVote", "60")));// -> minutes
- + NEXT_TIME_TO_AUTO_UPDATE_INDIVIDUAL_VOTES = TimeUnit.MINUTES.toMillis(Long.parseLong(votesystem.getProperty("NextTimeToAutoUpdateIndividualVotes", "60")));// -> minutes
- + NEXT_TIME_TO_AUTO_CLEAN_INECESARY_VOTES = TimeUnit.MINUTES.toMillis(Long.parseLong(votesystem.getProperty("NextTimeToAutoCleanInnecesaryVotes", "30")));// -> minutes
- + NEXT_TIME_TO_CHECK_AUTO_GLOBAL_VOTES_REWARD = TimeUnit.MINUTES.toMillis(Long.parseLong(votesystem.getProperty("NextTimeToCheckAutoGlobalVotesReward", "5")));// -> minutes
- + INTERVAL_TO_NEXT_VOTE = TimeUnit.HOURS.toMillis(Long.parseLong(votesystem.getProperty("IntervalTimeToNextVote", "12"))); // -> hours
- + GLOBAL_VOTES_AMOUNT_TO_NEXT_REWARD = Integer.parseInt(VoteSettings.getProperty("GlobalVotesAmountToNextReward", "50"));
- + ENABLE_VOTING_COMMAND = Boolean.parseBoolean(VoteSettings.getProperty("EnableVotingCommand", "true"));
- + VOTING_COMMAND = VoteSettings.getProperty("VotingCommand", "getreward");
- + VOTE_LINK_TGS = VoteSettings.getProperty("VoteLinkTgs", "");
- + TGS_API_KEY = VoteSettings.getProperty("TgsApiKey", "");
- + VOTE_LINK_TOP_CO = VoteSettings.getProperty("VoteLinkTopCo", "");
- + TOP_CO_SRV_ID = VoteSettings.getProperty("TopCoSrvId", "");
- + VOTE_LINK_ITOPZ = VoteSettings.getProperty("VoteLinkItopz", "");
- + ITOPZ_API_KEY = VoteSettings.getProperty("ItopzZpiKey", "");
- + ITOPZ_SRV_ID = VoteSettings.getProperty("ItopzSrvId", "");
- + VOTE_LINK_VTS = VoteSettings.getProperty("VoteLinkVts", "");
- + VTS_API_KEY = VoteSettings.getProperty("VtsApiKey", "");
- + VTS_SID = VoteSettings.getProperty("VtsSid", "");
- + VOTE_LINK_HZ = VoteSettings.getProperty("VoteLinkHz", "");
- + HZ_API_KEY = VoteSettings.getProperty("HzApiKey", "");
- + VOTE_NETWORK_LINK = VoteSettings.getProperty("VoteNetworkLink", "");
- + VOTE_NETWORK_USER_NAME = VoteSettings.getProperty("VoteNetworkUserName", "");
- + VOTE_NETWORK_API_KEY = VoteSettings.getProperty("VoteNetworkApiKey", "");
- + VOTE_LINK_TSS = VoteSettings.getProperty("VoteLinkTss", "");
- + TSS_API_TOKEN = VoteSettings.getProperty("TssApiToken", "");
- + TS_SRV_ID = VoteSettings.getProperty("TsSrvId", "");
- + TS_DOMAIN_NAME = VoteSettings.getProperty("TsDomainName", "");
- + BRASIL_VOTE_LINK = VoteSettings.getProperty("BrasilVoteLink", "");
- + BRASIL_USER_NAME = VoteSettings.getProperty("BrasilUserName", "");
- + VOTE_LINK_MMOTOP = VoteSettings.getProperty("VoteLinkMmotop", "");
- + MMOTOP_API_KEY = VoteSettings.getProperty("MmotopApiKey", "");
- + VOTE_LINK_TZ = VoteSettings.getProperty("VoteLinkTz", "");
- + TZ_API_KEY = VoteSettings.getProperty("TzApiKey", "");
- + VOTE_LINK_SERVERS = VoteSettings.getProperty("VoteLinkServers", "");
- + SERVERS_HASH_CODE = VoteSettings.getProperty("ServersHashCode", "");
- + SERVERS_SRV_ID = VoteSettings.getProperty("ServersSrvId", "");
- + TEST_IP = VoteSettings.getProperty("TestIp", "");
- +
- + }
- + catch (final Exception e)
- + {
- + e.printStackTrace();
- + throw new Error("Failed to Load " + VOTE + " File.");
- + }
- + }
- +
- // ============================================================
- public static boolean EVERYBODY_HAS_ADMIN_RIGHTS;
- public static boolean SHOW_GM_LOGIN;
- @@ -4531,6 +4636,7 @@
- // Head functions
- loadL2JFrozenConfig();
- loadPHYSICSConfig();
- + loadVoteConfig();
- loadAccessConfig();
- loadPvpConfig();
- loadCraftConfig();
- Index: head-src/com/l2jfrozen/gameserver/handler/VoicedCommandHandler.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/handler/VoicedCommandHandler.java (revision 1132)
- +++ head-src/com/l2jfrozen/gameserver/handler/VoicedCommandHandler.java (working copy)
- @@ -38,6 +38,7 @@
- import com.l2jfrozen.gameserver.handler.voicedcommandhandlers.StatsCmd;
- import com.l2jfrozen.gameserver.handler.voicedcommandhandlers.TvTCmd;
- import com.l2jfrozen.gameserver.handler.voicedcommandhandlers.VersionCmd;
- +import com.l2jfrozen.gameserver.handler.voicedcommandhandlers.VoteReward;
- import com.l2jfrozen.gameserver.handler.voicedcommandhandlers.Voting;
- import com.l2jfrozen.gameserver.handler.voicedcommandhandlers.Wedding;
- @@ -121,6 +122,11 @@
- registerVoicedCommandHandler(new OfflineShop());
- }
- + if (Config.ENABLE_VOTE_SYSTEM && Config.ENABLE_INDIVIDUAL_VOTE && Config.ENABLE_VOTING_COMMAND)
- + {
- + registerVoicedCommandHandler(new VoteReward());
- + }
- +
- LOGGER.info("VoicedCommandHandler: Loaded " + _datatable.size() + " handlers.");
- }
- Index: head-src/com/l2jfrozen/gameserver/votesystem/DB/individualVoteDB.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/DB/individualVoteDB.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/DB/individualVoteDB.java (working copy)
- @@ -0,0 +1,183 @@
- +package com.l2jfrozen.gameserver.votesystem.DB;
- +
- +import java.sql.Connection;
- +import java.sql.PreparedStatement;
- +import java.sql.ResultSet;
- +import java.sql.SQLException;
- +import java.sql.Statement;
- +import java.util.HashMap;
- +import java.util.HashSet;
- +import java.util.Map;
- +import java.util.logging.Logger;
- +
- +import com.l2jfrozen.gameserver.votesystem.Model.individualVote;
- +import com.l2jfrozen.util.database.L2DatabaseFactory;
- +import com.l2jfrozen.gameserver.votesystem.Enum.voteSite;
- +
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class individualVoteDB
- +{
- + private static final Logger LOGGER = Logger.getLogger(individualVoteDB.class.getName());
- + private final Map<String, individualVote[]> _votes;
- + private Statement st;
- + private Connection con;
- +
- + private individualVoteDB()
- + {
- + _votes = new HashMap<>();
- + loadVotes();
- + }
- +
- + public void loadVotes()
- + {
- +
- + _votes.clear();
- + try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- + PreparedStatement ps = con.prepareStatement("SELECT voterIp,voteSite,diffTime,votingTimeSite,alreadyRewarded FROM individualvotes");
- + ResultSet rs = ps.executeQuery();)
- + {
- + individualVote[] ivs = new individualVote[voteSite.values().length];
- + while (rs.next())
- + {
- + individualVote iv = new individualVote();
- + iv.setVoterIp(rs.getString("voterIp"));
- + iv.setVoteSite(rs.getInt("voteSite"));
- + iv.setDiffTime(rs.getLong("diffTime"));
- + iv.setVotingTimeSite(rs.getLong("votingTimeSite"));
- + iv.setAlreadyRewarded(rs.getBoolean("alreadyRewarded"));
- +
- + if (_votes.containsKey(iv.getVoterIp()))
- + {
- + if (_votes.get(iv.getVoterIp())[iv.getVoteSite()] == null)
- + {
- + ivs[iv.getVoteSite()] = iv;
- + _votes.put(iv.getVoterIp(), ivs);
- + }
- + }
- + else
- + {
- + ivs[iv.getVoteSite()] = iv;
- + _votes.put(iv.getVoterIp(), ivs);
- +
- + }
- + }
- +
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- +
- + }
- +
- + public void SaveVotes(Map<String, individualVote[]> votes)
- + {
- +
- + if (votes == null)
- + {
- + return;
- + }
- + if (votes.size() == 0)
- + {
- + return;
- + }
- + try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- + PreparedStatement ps = con.prepareStatement("INSERT INTO individualvotes(voterIp,voteSite,diffTime,votingTimeSite,alreadyRewarded) VALUES(?,?,?,?,?) ON DUPLICATE KEY UPDATE " + "voterIp = VALUES(voterIp), voteSite = VALUES(voteSite), diffTime = VALUES(diffTime), votingTimeSite = VALUES(votingTimeSite),alreadyRewarded = VALUES(alreadyRewarded)");)
- + {
- +
- + for (Map.Entry<String, individualVote[]> ivm : votes.entrySet())
- + {
- + for (individualVote iv : ivm.getValue())
- + {
- + if (iv == null)
- + {
- + continue;
- + }
- + ps.setString(1, iv.getVoterIp());
- + ps.setInt(2, iv.getVoteSite());
- + ps.setLong(3, iv.getDiffTime());
- + ps.setLong(4, iv.getVotingTimeSite());
- + ps.setBoolean(5, iv.getAlreadyRewarded());
- + ps.addBatch();
- + }
- + }
- + ps.executeBatch();
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public void SaveVote(individualVote vote)
- + {
- +
- + if (vote == null)
- + {
- + return;
- + }
- +
- + try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- + PreparedStatement ps = con.prepareStatement("INSERT INTO individualvotes(voterIp,voteSite,diffTime,votingTimeSite,alreadyRewarded) VALUES(?,?,?,?,?) ON DUPLICATE KEY UPDATE" + "voterIp = VALUES(voterIp), voteSite = VALUES(voteSite), diffTime = VALUES(diffTime), votingTimeSite = VALUES(votingTimeSite), alreadyRewarded = VALUES(alreadyRewarded)");)
- + {
- + ps.setString(1, vote.getVoterIp());
- + ps.setInt(2, vote.getVoteSite());
- + ps.setLong(3, vote.getDiffTime());
- + ps.setLong(4, vote.getVotingTimeSite());
- + ps.setBoolean(5, vote.getAlreadyRewarded());
- + ps.executeUpdate();
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public void DeleteVotes(HashSet<individualVote> deleteVotes)
- + {
- + if (deleteVotes == null)
- + {
- + return;
- + }
- + if (deleteVotes.size() == 0)
- + {
- + return;
- + }
- + try(Connection con = L2DatabaseFactory.getInstance().getConnection();Statement st = con.createStatement();)
- + {
- +
- + for (individualVote iv : deleteVotes)
- + {
- + String sql = String.format("Delete from individualvotes where voterIp = '%s' AND voteSite = %s", iv.getVoterIp(), iv.getVoteSite());
- + st.addBatch(sql);
- + }
- + int[] result = st.executeBatch();
- + st.close();
- + con.close();
- + LOGGER.info(result.length + " Innecesary votes has been deleted");
- +
- + }
- + catch (SQLException e)
- + {
- + e.printStackTrace();
- + }
- + }
- +
- + public Map<String, individualVote[]> getVotesDB()
- + {
- + return _votes;
- + }
- +
- + public static final individualVoteDB getInstance()
- + {
- + return SingleHolder.INSTANCE;
- + }
- +
- + private static final class SingleHolder
- + {
- + protected static final individualVoteDB INSTANCE = new individualVoteDB();
- + }
- +}
- \ No newline at end of file
- Index: head-src/com/l2jfrozen/gameserver/votesystem/Model/VoteSite.java
- ===================================================================
- --- head-src/com/l2jfrozen/gameserver/votesystem/Model/VoteSite.java (nonexistent)
- +++ head-src/com/l2jfrozen/gameserver/votesystem/Model/VoteSite.java (working copy)
- @@ -0,0 +1,53 @@
- +package com.l2jfrozen.gameserver.votesystem.Model;
- +
- +import java.util.ArrayList;
- +import java.util.List;
- +
- +/**
- + * @author l2.topgameserver.net
- + */
- +public class VoteSite
- +{
- + private int _siteOrdinal;
- + private String _siteName;
- + private final List<Reward> _rewards = new ArrayList<>();
- +
- + public VoteSite()
- + {
- +
- + }
- +
- + public void setSiteOrdinal(int siteOrdinal)
- + {
- + _siteOrdinal = siteOrdinal;
- + }
- +
- + public void setSiteName(String siteName)
- + {
- + _siteName = siteName;
- + }
- +
- + public void setRewardList(List<Reward> rewards)
- + {
- + for (Reward r : rewards)
- + {
- + _rewards.add(r);
- + }
- + }
- +
- + public int getSiteOrdinal()
- + {
- + return _siteOrdinal;
- + }
- +
- + public String getSiteName()
- + {
- + return _siteName;
- + }
- +
- + public List<Reward> getRewardList()
- + {
- + return _rewards;
- + }
- +
- +}
- ========================================================= DP ================================================
- Index: data/html/mods/votesystem/50009.htm
- ===================================================================
- --- data/html/mods/votesystem/50009.htm (nonexistent)
- +++ data/html/mods/votesystem/50009.htm (working copy)
- @@ -0,0 +1,19 @@
- +<html>
- +<title>Voting panel</title>
- +<body><center>
- + <br><img src="L2UI_CH3.herotower_deco" width=256 height=32><br>
- + <table cellpadding=2 width=280>
- + <tr><td width="280">Hello <font color="C6AF00">%accountName%</font>, welcome to the voting rewards dashboard, please help us by voting by server every <font color="C6AF00">%everyXtime% hours</font> in all voting sites.</td></tr>
- + </table>
- + <table width="290"><tr><td width="290" align="center">You can vote: </td></tr></table>
- + <br><img src="l2ui.SquareWhite" width=290 height=1><br>
- +
- + %enablevote%
- +
- + <br>
- + <img src="l2ui.SquareWhite" width=290 height=1><br>
- +
- +
- +
- +</center></body>
- +</html>
- \ No newline at end of file
- Index: data/stats/votesystem.xml
- ===================================================================
- --- data/stats/votesystem.xml (nonexistent)
- +++ data/stats/votesystem.xml (working copy)
- @@ -0,0 +1,70 @@
- +<?xml version="1.0" encoding="UTF-8"?>
- +<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/votesystem.xsd">
- + <votesite name="l2.topgameserver.net" ordinal="0">
- + <item itemId="57" itemCount="100000" />
- + </votesite>
- + <votesite name="ItopZ.com" ordinal="1">
- + <item itemId="57" itemCount="100000" />
- + </votesite>
- + <votesite name="L2Top.co" ordinal="2">
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </votesite>
- + <votesite name="L2Votes.com" ordinal="3">
- + <item itemId="57" itemCount="100000" />
- + </votesite>
- + <votesite name="Hopzone.net" ordinal="4">
- + <item itemId="57" itemCount="100000" />
- + </votesite>
- + <votesite name="L2Network.eu" ordinal="5">
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </votesite>
- + <votesite name="L2Topservers.com" ordinal="6">
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </votesite>
- + <votesite name="top.l2jbrasil.com" ordinal="7">
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </votesite>
- + <votesite name="MMOTOP.eu" ordinal="8">
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </votesite>
- + <votesite name="L2Topzone.com" ordinal="9">
- + <item itemId="57" itemCount="100000" />
- + </votesite>
- + <votesite name="L2Servers.com" ordinal="10">
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </votesite>
- + <votesite name="globalVotes" ordinal="11">
- + <item itemId="57" itemCount="100000" />
- + <item itemId="6673" itemCount="1"/>
- + </votesite>
- +</list>
- \ No newline at end of file
- Index: data/xsd/votesystem.xsd
- ===================================================================
- --- data/xsd/votesystem.xsd (nonexistent)
- +++ data/xsd/votesystem.xsd (working copy)
- @@ -0,0 +1,32 @@
- +<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- + <xs:element name="list">
- + <xs:complexType>
- + <xs:sequence>
- + <xs:element name="votesite" maxOccurs="unbounded" minOccurs="0">
- + <xs:complexType>
- + <xs:sequence>
- + <xs:element name="items">
- + <xs:complexType>
- + <xs:sequence>
- + <xs:element name="item" maxOccurs="unbounded" minOccurs="0">
- + <xs:complexType>
- + <xs:simpleContent>
- + <xs:extension base="xs:string">
- + <xs:attribute type="xs:short" name="itemId" use="optional"/>
- + <xs:attribute type="xs:int" name="itemCount" use="optional"/>
- + </xs:extension>
- + </xs:simpleContent>
- + </xs:complexType>
- + </xs:element>
- + </xs:sequence>
- + </xs:complexType>
- + </xs:element>
- + </xs:sequence>
- + <xs:attribute type="xs:string" name="name" use="optional"/>
- + <xs:attribute type="xs:byte" name="ordinal" use="optional"/>
- + </xs:complexType>
- + </xs:element>
- + </xs:sequence>
- + </xs:complexType>
- + </xs:element>
- +</xs:schema>
- ==================================================== SQL ==============================================
- \ No newline at end of file
- -- ----------------------------
- -- Table structure for globalvotes
- -- ----------------------------
- DROP TABLE IF EXISTS `globalvotes`;
- CREATE TABLE `globalvotes` (
- `voteSite` tinyint(2) NOT NULL,
- `lastRewardVotes` int(11) NULL DEFAULT NULL,
- PRIMARY KEY (`voteSite`) USING BTREE
- ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
- -- ----------------------------
- -- Records of globalvotes
- -- ----------------------------
- INSERT INTO `globalvotes` VALUES (0, 13);
- INSERT INTO `globalvotes` VALUES (1, 68);
- INSERT INTO `globalvotes` VALUES (2, 0);
- INSERT INTO `globalvotes` VALUES (3, 3);
- INSERT INTO `globalvotes` VALUES (4, 2);
- INSERT INTO `globalvotes` VALUES (5, 0);
- INSERT INTO `globalvotes` VALUES (6, 0);
- INSERT INTO `globalvotes` VALUES (7, 2);
- INSERT INTO `globalvotes` VALUES (8, 3);
- INSERT INTO `globalvotes` VALUES (9, 0);
- INSERT INTO `globalvotes` VALUES (10, 75);
- -- ----------------------------
- -- Table structure for individualvotes
- -- ----------------------------
- DROP TABLE IF EXISTS `individualvotes`;
- CREATE TABLE `individualvotes` (
- `voterIp` varchar(40) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
- `voteSite` tinyint(3) NOT NULL,
- `diffTime` bigint(20) NULL DEFAULT NULL,
- `votingTimeSite` bigint(20) NULL DEFAULT NULL,
- `alreadyRewarded` tinyint(3) NULL DEFAULT NULL,
- PRIMARY KEY (`voterIp`, `voteSite`) USING BTREE
- ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
- INSERT INTO `frozen-vote`.`custom_npc`(`id`, `idTemplate`, `name`, `serverSideName`, `title`, `serverSideTitle`, `class`, `collision_radius`, `collision_height`, `level`, `sex`, `type`, `attackrange`, `hp`, `mp`, `hpreg`, `mpreg`, `str`, `con`, `dex`, `int`, `wit`, `men`, `exp`, `sp`, `patk`, `pdef`, `matk`, `mdef`, `atkspd`, `aggro`, `matkspd`, `rhand`, `lhand`, `armor`, `walkspd`, `runspd`, `faction_id`, `faction_range`, `isUndead`, `absorb_level`, `absorb_type`) VALUES (50009, 31228, 'Kayaa', 1, 'Vote System', 1, 'Monster.cat_the_cat', 9.00, 16.00, 70, 'male', 'L2NpcVoteReward', 40, 3862, 1493, 11.85, 2.78, 40, 43, 30, 21, 20, 10, 490, 10, 1335, 470, 780, 382, 278, 0, 333, 0, 0, 0, 88, 132, NULL, 0, 0, 0, 'LAST_HIT');
Add Comment
Please, Sign In to add comment