Jump to content
  • 0

Hopzone Topzone Problem!


Question

Posted

can you help me with hopzone/topzone problem reward

 

so hopzone announce in game work but not give reward

and topzone announce in game not work and in gameserver give thi error :(

 

i have l2jextreme pack source l2acis but not up to date

 

http://postimg.org/image/572k56ta7/

13 answers to this question

Recommended Posts

  • 0
Posted

can you help me with hopzone/topzone problem reward

 

so hopzone announce in game work but not give reward

and topzone announce in game not work and in gameserver give thi error :(

 

i have l2jextreme pack source l2acis but not up to date

 

http://postimg.org/image/572k56ta7/

I have fixed this one for anarchys vote system..
  • 0
Posted

any help cuz don't work ..look at my java file 

/*
 * 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 Extensions.AutoVoteReward;
 
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.Collection;
import java.util.HashMap;
 
import net.sf.l2j.Config;
import net.sf.l2j.gameserver.Announcements;
import net.sf.l2j.gameserver.ThreadPoolManager;
import net.sf.l2j.gameserver.model.L2World;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
/**
 * @author Anarchy
 *
 */
public class VoteRewardHopzone
{
       // Configurations.
       private static String hopzoneUrl = Config.HOPZONE_SERVER_LINK;
       private static String page1Url = Config.HOPZONE_FIRST_PAGE_LINK;
       private static int voteRewardVotesDifference = Config.HOPZONE_VOTES_DIFFERENCE;
       private static int firstPageRankNeeded = Config.HOPZONE_FIRST_PAGE_RANK_NEEDED;
       private static int checkTime = 60*1000*Config.HOPZONE_REWARD_CHECK_TIME;
      
       // Don't-touch variables.
       private static int lastVotes = 0;
       private static HashMap<String, Integer> playerIps = new HashMap<>();
      
       public static void updateConfigurations()
       {
               hopzoneUrl = Config.HOPZONE_SERVER_LINK;
               page1Url = Config.HOPZONE_FIRST_PAGE_LINK;
               voteRewardVotesDifference = Config.HOPZONE_VOTES_DIFFERENCE;
               firstPageRankNeeded = Config.HOPZONE_FIRST_PAGE_RANK_NEEDED;
               checkTime = 60*1000*Config.HOPZONE_REWARD_CHECK_TIME;
       }
      
       public static void getInstance()
       {
               System.out.println("Hopzone - Vote reward system initialized.");
               ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable()
               {
                       @Override
                       public void run()
                       {
                               if (Config.ALLOW_HOPZONE_VOTE_REWARD)
                               {
                                       reward();
                               }
                               else
                               {
                                       return;
                               }
                       }
               }, checkTime/2, checkTime);
       }
      
       static void reward()
       {
               int firstPageVotes = getFirstPageRankVotes();
               int currentVotes = getVotes();
              
               if (firstPageVotes == -1 || currentVotes == -1)
               {
                       if (firstPageVotes == -1)
                       {
                               System.out.println("There was a problem on getting Hopzone votes from server with rank "+firstPageRankNeeded+".");
                       }
                       if (currentVotes == -1)
                       {
                               System.out.println("There was a problem on getting Hopzone server votes.");
                       }
                      
                       return;
               }
              
               if (lastVotes == 0)
               {
                       lastVotes = currentVotes;
                       Announcements.announceToAll("Hopzone: Vote count is "+currentVotes+".");
                       Announcements.announceToAll("Hopzone: We need "+((lastVotes+voteRewardVotesDifference)-currentVotes)+" vote(s) for reward.");
                       if (Config.ALLOW_HOPZONE_GAME_SERVER_REPORT)
                       {
                               System.out.println("Server votes on hopzone: "+currentVotes);
                               System.out.println("Votes needed for reward: "+((lastVotes+voteRewardVotesDifference)-currentVotes));
                       }
                       if (firstPageVotes-lastVotes <= 0)
                       {
                               Announcements.announceToAll("Hopzone: We are in the top "+firstPageRankNeeded+", so the reward will be big.");
                               if (Config.ALLOW_HOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server is on the top "+firstPageRankNeeded+" of hopzone.");
                               }
                       }
                       else
                       {
                               Announcements.announceToAll("Hopzone: We need "+(firstPageVotes-lastVotes)+" vote(s) to get to the top "+firstPageRankNeeded+" of Hopzone for big reward.");
                               if (Config.ALLOW_HOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server votes needed for top "+firstPageRankNeeded+": "+(firstPageVotes-lastVotes));
                               }
                       }
                       return;
               }
              
               if (currentVotes >= lastVotes+voteRewardVotesDifference)
               {
                       Collection<L2PcInstance> pls = L2World.getInstance().getAllPlayers().values();
                       if (firstPageVotes-currentVotes <= 0)
                       {
                               if (Config.ALLOW_HOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server votes on hopzone: "+currentVotes);
                                       System.out.println("Server is on the first page of hopzone.");
                                       System.out.println("Votes needed for next reward: "+((currentVotes+voteRewardVotesDifference)-currentVotes));
                               }
                               Announcements.announceToAll("Hopzone: Everyone has been rewarded with big reward.");
                               Announcements.announceToAll("Hopzone: Current vote count is "+currentVotes+".");
                               for (L2PcInstance p : pls)
                               {
                                       boolean canReward = false;
                                       String pIp = p.getClient().getConnection().getInetAddress().getHostAddress();
                                       if (playerIps.containsKey(pIp))
                                       {
                                               int count = playerIps.get(pIp);
                                               if (count < Config.HOPZONE_DUALBOXES_ALLOWED)
                                               {
                                                       playerIps.remove(pIp);
                                                       playerIps.put(pIp, count+1);
                                                       canReward = true;
                                               }
                                       }
                                       else
                                       {
                                               canReward = true;
                                               playerIps.put(pIp, 1);
                                       }
                                       if (canReward)
                                       {
                                               for (int i = 0; i < Config.HOPZONE_BIG_REWARD.length; i++)
                                               {
                                                       p.addItem("Vote reward.", Config.HOPZONE_BIG_REWARD[i][0], Config.HOPZONE_BIG_REWARD[i][1], p, true);
                                               }
                                       }
                                       else
                                       {
                                               p.sendMessage("Already "+Config.HOPZONE_DUALBOXES_ALLOWED+" character(s) of your ip have been rewarded, so this character won't be rewarded.");
                                       }
                               }
                               playerIps.clear();
                       }
                       else
                       {
                               if (Config.ALLOW_HOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server votes on hopzone: "+currentVotes);
                                       System.out.println("Server votes needed for first page: "+(firstPageVotes-lastVotes));
                                       System.out.println("Votes needed for next reward: "+((currentVotes+voteRewardVotesDifference)-currentVotes));
                               }
                               Announcements.announceToAll("Hopzone: Everyone has been rewarded with small reward.");
                               Announcements.announceToAll("Hopzone: Current vote count is "+currentVotes+".");
                               Announcements.announceToAll("Hopzone: We need "+(firstPageVotes-currentVotes)+" vote(s) to get to the top "+firstPageRankNeeded+" of Hopzone for big reward.");
                               for (L2PcInstance p : pls)
                               {
                                       boolean canReward = false;
                                       String pIp = p.getClient().getConnection().getInetAddress().getHostAddress();
                                       if (playerIps.containsKey(pIp))
                                       {
                                               int count = playerIps.get(pIp);
                                               if (count < Config.HOPZONE_DUALBOXES_ALLOWED)
                                               {
                                                       playerIps.remove(pIp);
                                                       playerIps.put(pIp, count+1);
                                                       canReward = true;
                                               }
                                       }
                                       else
                                       {
                                               canReward = true;
                                               playerIps.put(pIp, 1);
                                       }
                                       if (canReward)
                                       {
                                               for (int i = 0; i < Config.HOPZONE_SMALL_REWARD.length; i++)
                                               {
                                                       p.addItem("Vote reward.", Config.HOPZONE_SMALL_REWARD[i][0], Config.HOPZONE_SMALL_REWARD[i][1], p, true);
                                               }
                                       }
                                       else
                                       {
                                               p.sendMessage("Already "+Config.HOPZONE_DUALBOXES_ALLOWED+" character(s) of your ip have been rewarded, so this character won't be rewarded.");
                                       }
                               }
                               playerIps.clear();
                       }
                      
                       lastVotes = currentVotes;
               }
               else
               {
                       if (firstPageVotes-currentVotes <= 0)
                       {
                               if (Config.ALLOW_HOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server votes on hopzone: "+currentVotes);
                                       System.out.println("Server is on the first page of hopzone.");
                                       System.out.println("Votes needed for next reward: "+((lastVotes+voteRewardVotesDifference)-currentVotes));
                               }
                               Announcements.announceToAll("Hopzone: Current vote count is "+currentVotes+".");
                               Announcements.announceToAll("Hopzone: We need "+((lastVotes+voteRewardVotesDifference)-currentVotes)+" vote(s) for big reward.");
                       }
                       else
                       {
                               if (Config.ALLOW_HOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server votes on hopzone: "+currentVotes);
                                       System.out.println("Server votes needed for first page: "+(firstPageVotes-lastVotes));
                                       System.out.println("Votes needed for next reward: "+((lastVotes+voteRewardVotesDifference)-currentVotes));
                               }
                               Announcements.announceToAll("Hopzone: Current vote count is "+currentVotes+".");
                               Announcements.announceToAll("Hopzone: We need "+((lastVotes+voteRewardVotesDifference)-currentVotes)+" vote(s) for small reward.");
                               Announcements.announceToAll("Hopzone: We need "+(firstPageVotes-currentVotes)+" vote(s) to get to the top "+firstPageRankNeeded+" of Hopzone for big reward.");
                       }
               }
       }
      
       private static int getFirstPageRankVotes()
       {
               InputStreamReader isr = null;
               BufferedReader br = null;
              
               try
               {
                       URLConnection con = new URL(page1Url).openConnection();
                       con.addRequestProperty("User-Agent", "Mozilla/4.76");
                       isr = new InputStreamReader(con.getInputStream());
                       br = new BufferedReader(isr);
                      
                       String line;
                       int i = 0;
                       while ((line = br.readLine()) != null)
                       {
                               if (line.contains("<span class=\"no\">"+firstPageRankNeeded+"</span>"))
                               {
                                       i++;
                               }
                               if (line.contains("<span class=\"rank anonymous tooltip\"") && i == 1)
                               {
                                       i = 0;
                                       int votes = Integer.valueOf(line.replaceAll("[^\\d]", ""));
                                       return votes;
                               }
                       }
                      
                       br.close();
                       isr.close();
               }
               catch (Exception e)
               {
                       System.out.println(e);
                       System.out.println("Error while getting Hopzone server vote count.");
               }
              
               return -1;
       }
      
       private static int getVotes()
       {
               InputStreamReader isr = null;
               BufferedReader br = null;
              
               try
               {
                       URLConnection con = new URL(hopzoneUrl).openConnection();
                       con.addRequestProperty("User-Agent", "Mozilla/4.76");
                       isr = new InputStreamReader(con.getInputStream());
                       br = new BufferedReader(isr);
                      
                       String line;
                       while ((line = br.readLine()) != null)
                       {
                               if (line.contains("<li><span class=\"rank anonymous tooltip\""))
                               {
                                       int votes = Integer.valueOf(line.replaceAll("[^\\d]", ""));
                                       return votes;
                               }
                       }
                      
                       br.close();
                       isr.close();
               }
               catch (Exception e)
               {
                       System.out.println(e);
                       System.out.println("Error while getting server vote count.");
               }
              
               return -1;
       }
}

and 

package Extensions.AutoVoteReward;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.Collection;
import java.util.HashMap;

import net.sf.l2j.Config;
import net.sf.l2j.gameserver.Announcements;
import net.sf.l2j.gameserver.ThreadPoolManager;
import net.sf.l2j.gameserver.model.L2World;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
/**
+ * @author Anarchy
+ *
+ */
public class VoteRewardTopzone
{
       // Configurations.
       private static String topzoneUrl = Config.TOPZONE_SERVER_LINK;
       private static String page1Url = Config.TOPZONE_FIRST_PAGE_LINK;
       private static int voteRewardVotesDifference = Config.TOPZONE_VOTES_DIFFERENCE;
       private static int firstPageRankNeeded = Config.TOPZONE_FIRST_PAGE_RANK_NEEDED;
       private static int checkTime = 60*1000*Config.TOPZONE_REWARD_CHECK_TIME;
     
       // Don't-touch variables.
       private static int lastVotes = 0;
       private static HashMap<String, Integer> playerIps = new HashMap<>();
      
       public static void updateConfigurations()
       {
               topzoneUrl = Config.TOPZONE_SERVER_LINK;
               page1Url = Config.TOPZONE_FIRST_PAGE_LINK;
               voteRewardVotesDifference = Config.TOPZONE_VOTES_DIFFERENCE;
               firstPageRankNeeded = Config.TOPZONE_FIRST_PAGE_RANK_NEEDED;
               checkTime = 60*1000*Config.TOPZONE_REWARD_CHECK_TIME;
       }
      
       public static void getInstance()
       {
               System.out.println("Topzone - Vote reward system initialized.");
               ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable()
               {
                       @Override
                       public void run()
                       {
                               if (Config.ALLOW_TOPZONE_VOTE_REWARD)
                               {
                                       reward();
                               }
                               else
                               {
                                       return;
                               }
                       }
               }, checkTime/2, checkTime);
       }
     
       static void reward()
       {
               int firstPageVotes = getFirstPageRankVotes();
               int currentVotes = getVotes();
              
               if (firstPageVotes == -1 || currentVotes == -1)
               {
                       if (firstPageVotes == -1)
                       {
                               System.out.println("There was a problem on getting Topzone votes from server with rank "+firstPageRankNeeded+".");
                       }
                       if (currentVotes == -1)
                       {
                               System.out.println("There was a problem on getting Topzone server votes.");
                       }
                      
                      return;
               }
              
               if (lastVotes == 0)
               {
                       lastVotes = currentVotes;
                       Announcements.announceToAll("Topzone: Current vote count is "+currentVotes+".");
                       Announcements.announceToAll("Topzone: We need "+((lastVotes+voteRewardVotesDifference)-currentVotes)+" vote(s) for reward.");
                       if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT)
                       {
                               System.out.println("Server votes on topzone: "+currentVotes);
                               System.out.println("Votes needed for reward: "+((lastVotes+voteRewardVotesDifference)-currentVotes));
                       }
                       if (firstPageVotes-lastVotes <= 0)
                       {
                               Announcements.announceToAll("Topzone: We are in the top "+firstPageRankNeeded+" of topzone, so the reward will be big.");
                               if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server is on the top "+firstPageRankNeeded+" of topzone.");
                               }
                       }
                       else
                       {
                               Announcements.announceToAll("Topzone: We need "+(firstPageVotes-lastVotes)+" vote(s) to get to the top "+firstPageRankNeeded+" of topzone for big reward.");
                               if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server votes needed for top "+firstPageRankNeeded+": "+(firstPageVotes-lastVotes));
                              }
                       }
                       return;
               }
              
               if (currentVotes >= lastVotes+voteRewardVotesDifference)
               {
                       Collection<L2PcInstance> pls = L2World.getInstance().getAllPlayers().values();
                       if (firstPageVotes-currentVotes <= 0)
                       {
                               if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server votes on topzone: "+currentVotes);
                                       System.out.println("Server is on the top "+firstPageRankNeeded+" of topzone.");
                                       System.out.println("Votes needed for next reward: "+((currentVotes+voteRewardVotesDifference)-currentVotes));
                               }
                               Announcements.announceToAll("Topzone: Everyone has been rewarded with big reward.");
                               Announcements.announceToAll("Topzone: Current vote count is "+currentVotes+".");
                               for (L2PcInstance p : pls)
                               {
                                      boolean canReward = false;
                                       String pIp = p.getClient().getConnection().getInetAddress().getHostAddress();
                                       if (playerIps.containsKey(pIp))
                                       {
                                               int count = playerIps.get(pIp);
                                               if (count < Config.TOPZONE_DUALBOXES_ALLOWED)
                                               {
                                                       playerIps.remove(pIp);
                                                       playerIps.put(pIp, count+1);
                                                       canReward = true;
                                               }
                                       }
                                       else
                                       {
                                               canReward = true;
                                               playerIps.put(pIp, 1);
                                       }
                                       if (canReward)
                                       {
                                               for (int i = 0; i < Config.TOPZONE_BIG_REWARD.length; i++)
                                               {
                                                       p.addItem("Vote reward.", Config.TOPZONE_BIG_REWARD[i][0], Config.TOPZONE_BIG_REWARD[i][1], p, true);
                                              }
                                       }
                                       else
                                       {
                                               p.sendMessage("Already "+Config.TOPZONE_DUALBOXES_ALLOWED+" character(s) of your ip have been rewarded, so this character won't be rewarded.");
                                       }
                               }
                               playerIps.clear();
                       }
                       else
                       {
                               if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT)
                              {
                                       System.out.println("Server votes on topzone: "+currentVotes);
                                       System.out.println("Server votes needed for top "+firstPageRankNeeded+": "+(firstPageVotes-lastVotes));
                                       System.out.println("Votes needed for next reward: "+((currentVotes+voteRewardVotesDifference)-currentVotes));
                              }
                               Announcements.announceToAll("Topzone: Everyone has been rewarded with small reward.");
                               Announcements.announceToAll("Topzone: Current vote count is "+currentVotes+".");
                               Announcements.announceToAll("Topzone: We need "+(firstPageVotes-currentVotes)+" vote(s) to get to the top "+firstPageRankNeeded+" of topzone for big reward.");
                               for (L2PcInstance p : pls)
                               {
                                       boolean canReward = false;
                                       String pIp = p.getClient().getConnection().getInetAddress().getHostAddress();
                                       if (playerIps.containsKey(pIp))
                                       {
                                               int count = playerIps.get(pIp);
                                               if (count < Config.TOPZONE_DUALBOXES_ALLOWED)
                                               {
                                                       playerIps.remove(pIp);
                                                       playerIps.put(pIp, count+1);
                                                       canReward = true;
                                               }
                                       }
                                       else
                                       {
                                               canReward = true;
                                               playerIps.put(pIp, 1);
                                       }
                                       if (canReward)
                                       {
                                               for (int i = 0; i < Config.TOPZONE_SMALL_REWARD.length; i++)
                                               {
                                                       p.addItem("Vote reward.", Config.TOPZONE_SMALL_REWARD[i][0], Config.TOPZONE_SMALL_REWARD[i][1], p, true);
                                               }
                                       }
                                       else
                                       {
                                               p.sendMessage("Already "+Config.TOPZONE_DUALBOXES_ALLOWED+" character(s) of your ip have been rewarded, so this character won't be rewarded.");
                                       }
                               }
                               playerIps.clear();
                       }
                      
                       lastVotes = currentVotes;
               }
               else
               {
                       if (firstPageVotes-currentVotes <= 0)
                       {
                               if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server votes on topzone: "+currentVotes);
                                       System.out.println("Server is on the top "+firstPageRankNeeded+" of topzone.");
                                       System.out.println("Votes needed for next reward: "+((lastVotes+voteRewardVotesDifference)-currentVotes));
                               }
                               Announcements.announceToAll("Topzone: Current vote count is "+currentVotes+".");
                               Announcements.announceToAll("Topzone: We need "+((lastVotes+voteRewardVotesDifference)-currentVotes)+" vote(s) for big reward.");
                       }
                       else
                       {
                               if (Config.ALLOW_TOPZONE_GAME_SERVER_REPORT)
                               {
                                       System.out.println("Server votes on topzone: "+currentVotes);
                                       System.out.println("Server votes needed for top "+firstPageRankNeeded+": "+(firstPageVotes-lastVotes));
                                       System.out.println("Votes needed for next reward: "+((lastVotes+voteRewardVotesDifference)-currentVotes));
                               }
                               Announcements.announceToAll("Topzone: Current vote count is "+currentVotes+".");
                               Announcements.announceToAll("Topzone: We need "+((lastVotes+voteRewardVotesDifference)-currentVotes)+" vote(s) for small reward.");
                               Announcements.announceToAll("Topzone: We need "+(firstPageVotes-currentVotes)+" vote(s) to get to the top "+firstPageRankNeeded+" of topzone for big reward.");
                       }
               }
       }
      
       private static int getFirstPageRankVotes()
       {
               InputStreamReader isr = null;
               BufferedReader br = null;
              
               try
               {
                       URLConnection con = new URL(page1Url).openConnection();
                       con.addRequestProperty("User-Agent", "Mozilla/4.76");
                       isr = new InputStreamReader(con.getInputStream());
                       br = new BufferedReader(isr);
                     
                       String line;
                       while ((line = br.readLine()) != null)
                       {
                               if (line.contains("<div class=\"slr\">"+firstPageRankNeeded+"<div class=\"votes\">Votes:<br><span>"))
                               {
                                       int votes = Integer.valueOf(line.split("<div class=\"slr\">"+firstPageRankNeeded+"<div class=\"votes\">Votes:<br><span>")[1].replace("</span></div></div>", ""));
                                       return votes;
                               }
                       }
                      
                       br.close();
                       isr.close();
               }
               catch (Exception e)
               {
                       System.out.println(e);
                       System.out.println("Error while getting Hopzone server vote count.");
               }
              
               return -1;
       }
             
       private static int getVotes()
       {
               InputStreamReader isr = null;
               BufferedReader br = null;
              
               try
               {
                       URLConnection con = new URL(topzoneUrl).openConnection();
                       con.addRequestProperty("User-Agent", "Mozilla/4.76");
                       isr = new InputStreamReader(con.getInputStream());
                       br = new BufferedReader(isr);
                      
                       boolean got = false;
                      
                       String line;
                       while ((line = br.readLine()) != null)
                       {
                               if (line.contains("<div class=\"rank\"><div class=\"votes2\">Votes:<br>") && !got)
                               {
                                       got = true;
                                       int votes = Integer.valueOf(line.split("<div class=\"rank\"><div class=\"votes2\">Votes:<br>")[1].replace("</div></div>", ""));
                                      return votes;
                              }
                      }
                     
                       br.close();
                       isr.close();
               }
               catch (Exception e)
               {
                       System.out.println(e);
                       System.out.println("Error while getting server vote count.");
               }
              
               return -1;
       }
}
  • 0
Posted

you can send me our configs? i want to see the topzone / hopzone URL

# Vote reward for Hopzone.
AllowHopzoneVoteReward = True
# Vote reward server link.
HopzoneServerLink = http://l2.topzone.net/lineage2/details/74078/L2World-Servers/'>http://l2.topzone.net/lineage2/details/74078/L2World-Servers/
# First page of servers list link.
HopzoneFirstPageLink = http://l2.hopzone.net/lineage2/
# Votes for next reward needed.
HopzoneVotesDifference = 5
# Rank needed for server to be on first page.
HopzoneFirstPageRankNeeded = 15
# Minutes between rewards.
# Eg. You put 5 it checks every 5 minutes for reward.
HopzoneRewardCheckTime = 5
# Small reward(s).
HopzoneSmallReward = 57,100000000;
# Big reward(s).
HopzoneBigReward = 3470,1;
# Hopzone reward max dual boxes reward.
# For example if you put 2 and someone has 3 boxes open 2 will be rewarded.
HopzoneDuaboxesAllowed = 1
# Game server console report.
# If set to true, game server console will get a report of
# current vote count, votes needed for next reward and votes needed for first page.
AllowHopzoneGameServerReport = True

# Vote reward for Topzone.
AllowTopzoneVoteReward = True
# Vote reward server link.
TopzoneServerLink = http://l2.topzone.net/lineage2/details/74078/L2World-Servers/'>http://l2.topzone.net/lineage2/details/74078/L2World-Servers/
# First page of servers list link.
TopzoneFirstPageLink = http://l2.topzone.net/lineage2/
# Votes for next reward needed.
TopzoneVotesDifference = 5
# Rank needed for server to be on first page.
TopzoneFirstPageRankNeeded = 15
# Minutes between rewards.
# Eg. You put 5 it checks every 5 minutes for reward.
TopzoneRewardCheckTime = 5
# Small reward(s).
TopzoneSmallReward = 57,100000000;
# Big reward(s).
TopzoneBigReward = 3470,1;
# Hopzone reward max dual boxes reward.
# For example if you put 2 and someone has 3 boxes open 2 will be rewarded.
TopzoneDuaboxesAllowed = 1
# Game server console report.
# If set to true, game server console will get a report of
# current vote count, votes needed for next reward and votes needed for first page.
AllowTopzoneGameServerReport = True
  • 0
Posted

Hopzone is working fine if you use correct link..

 

For topzone reward, you should check the update of Anarchy's code.

The problem is in lines getVotes.

  • 0
Posted

i fixed hopzone reward but topzone still get error with 

 

There was a problem on getting Topzone votes from server with rank 15.
There was a problem on getting Topzone server votes.
  • 0
Posted

TopzoneFirstPageLink = http://l2topzone.com/lineage2/list

 

TopzoneServerLink = http://l2topzone.com/lineage/server-info/2923/l2-saga.html

 

try this and tell me.

Topzone was changed.

The link must be like < http://l2topzone.com/totalvotes.php?id=6084 >

 

 

 

 

i fixed hopzone reward but topzone still get error with 

 

There was a problem on getting Topzone votes from server with rank 15.
There was a problem on getting Topzone server votes.

 

 

For topzone reward, you should check the update of Anarchy's code.

The problem is in lines getVotes.

Guest
This topic is now closed to further replies.


  • Posts

    • From Salvation onwards I think you need a patched nwindow.dll that allows such modifications, try to see if you get what you need here: https://drive.google.com/drive/u/1/folders/1LLbQFGf8KlR-O0Iv5umfF-pwZgrDh9bd
    • hello everyone! I am wanting to save the files (Ini. - Data - ) of the EP5 Client: Salvation... But they generate the error "corrupt files"... I tried several versions of L2FileEditor without good results. I need help! Thank you!
    • Opening December 6th at 19:00 (GMT +3)! Open Beta Test from November 30th!   https://l2soe.com/   🌟 Introducing L2 Saga of Eternia: A Revolution in Lineage 2 High Five! 🌟   Dear Lineage 2 enthusiasts, Prepare to witness the future of private servers! L2 Saga of Eternia is not just another High Five project—it’s a game-changing experience designed to compete with the giants of the Lineage 2 private server scene. Built for the community, by the community, we’re here to raise the bar in quality, innovation, and longevity. What Sets Us Apart? 💎 No Wipes, Ever Say goodbye to the fear of losing your progress. Our server is built to last and will never close. Stability and consistency are our promises to you. ⚔️ Weekly New Content Our dedicated development team ensures fresh challenges, events, and updates every week. From custom quests to exclusive features, there will always be something exciting to explore. 💰 No Pay-to-Win Skill and strategy matter most here. Enjoy a balanced gameplay environment where your achievements come from effort, not your wallet. 🌍 A Massive Community With 2000+ players expected, join a vibrant and active community of like-minded adventurers ready to conquer the world of Aden. 🏆 Fair and Competitive Gameplay Our systems are designed to promote healthy competition while avoiding abusive mechanics and exploits. 🔧 Professional Development From advanced bug fixes to carefully curated content, we pride ourselves on smooth performance, no lag, and unparalleled server quality. Key Features Chronicle: High Five with unique interface Rate: Dynamic x10 rates Class Balance: Carefully fine-tuned for a fair experience PvP Focused: PvP Ranking & aura display effect for 3 Top PvPers every week Custom Events: Seasonal and permanent events to keep you engaged Additional Features:   Custom Endgame Content: Introduce unique dungeons, raids, or zones unavailable in other servers. Player-Driven Economy: Implement a strong market system and avoid overinflated drops or rewards. Epic Siege Battles: Announce special large-scale sieges and PvP events. Incentives for Streamers and Clans: Attract influencers and big clans to boost server publicity. Roadmap Transparency: Share a public roadmap of planned updates to build trust and excitemen   Here you can read all the features: https://l2soe.com/features   Video preview: Join the Revolution! This is your chance to be part of something legendary. L2 Saga of Eternia is not just a server; it’s a movement to redefine what Lineage 2 can be. Whether you’re a seasoned veteran or a newcomer to the world of Aden, we invite you to experience Lineage 2 at its finest.   Official Launch Date: December 6th 2024 Website: https://l2soe.com/ Facebook: https://www.facebook.com/l2soe Discord: https://discord.com/invite/l2eternia   Let’s build the ultimate Lineage 2 experience together. See you in-game! 🎮
    • That's like a tutorial on how to run l2 on MacOS Xd but good job for the investigation. 
  • Topics

×
×
  • Create New...