Jump to content
  • 0

Hopzone Vote Reward problem


Question

Posted

Geia sas alania exw to eksis provlima edw kai kati mines :D loipon kanei check mesa sto game den kolaei kamia fora ala den to kanei swsta grafi deiladh we have 0 votes . next reward will be on 8 panta leei oti exoume 0 eno dn exoume tosa vote o server einai kanonika hopzone mpwrei kapios na voithisi parakalw poly? exw kai ta java kai ola..

7 answers to this question

Recommended Posts

  • 0
Posted

Geia sas alania exw to eksis provlima edw kai kati mines :D loipon kanei check mesa sto game den kolaei kamia fora ala den to kanei swsta grafi deiladh we have 0 votes . next reward will be on 8 panta leei oti exoume 0 eno dn exoume tosa vote o server einai kanonika hopzone mpwrei kapios na voithisi parakalw poly? exw kai ta java kai ola..

 

Elegkses mhpws exeis kanei se kapoio line tou kwdika lathos???

  • 0
Posted

den pistevw gt kapote douleue thes file mou na sou grapso to code p exw akrivos edw??

 

Nai se parakalw, gia na dw ki egw ti akrivws ginetai kai na sou pw ti egine lathos kai ti oxi ;).

  • 0
Posted

package net.sf.l2j.gameserver.managers;

   

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

import java.net.URL;

import java.net.URLConnection;

import java.sql.Connection;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

import java.util.Collection;

import java.util.List;

import java.util.logging.Level;

import java.util.logging.Logger;

 

import net.sf.l2j.Config;

import net.sf.l2j.gameserver.model.L2Player;

import net.sf.l2j.gameserver.model.L2World;

import net.sf.l2j.gameserver.model.entity.Announcements;

import net.sf.l2j.gameserver.network.clientpackets.Say2;

import net.sf.l2j.gameserver.network.serverpackets.CreatureSay;

import net.sf.l2j.gameserver.thread.ThreadPoolManager;

import net.sf.l2j.util.database.L2DatabaseFactory;

 

public class AutoVoteRewardManager

{

    private static Logger _log = Logger.getLogger(AutoVoteRewardManager.class.getName());

       

    private static final String http = "http://l2.hopzone.net/lineage2/details/90146/L2Retard";

    private static final int initialCheck  = 60 * 1000;

    private static final int delayForCheck = 600 * 1000;

    private static final int[] itemId    = { 6577, 6570, 8762 } ;

    private static final int[] itemCount = { 1, 1, 3 };

    private static final int votesRequiredForReward = 8;

 

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

    private static int lastVoteCount = 0;

     

    public AutoVoteRewardManager()

    {

        _log.info("AutoVoteRewardManager: Vote reward system initiated.");

        if (Config.L2JMOD_VOTE_ENGINE_SAVE)

            load();

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

    }

     

    private class AutoReward implements Runnable

    {

        public void run()

        {

            int votes = getVotes();

            _log.info("AutoVoteRewardManager: We now have " + votes + "/"+(getLastVoteCount()+votesRequiredForReward)+" vote(s). Next check in "+(delayForCheck/1000)+" sec.");

            Announcements.getInstance().announceToAll("Vote Server on HopZone");

 

            if (votes >= getLastVoteCount() + votesRequiredForReward)

            {

                Collection<L2Player> pls = L2World.getInstance().getAllPlayers();

                {

                    for (L2Player onlinePlayer : pls)

                    {

                    if (onlinePlayer.isOnline() == 1 && !onlinePlayer.getClient().isDetached()

                    && !_ips.contains(onlinePlayer.getClient().getConnection().getInetAddress().getHostAddress()))

                        {

                            for (int i = 0; i < itemId.length; i++)

                            {

                              onlinePlayer.addItem("vote_reward", itemId, itemCount, onlinePlayer, true);

                            }

                 

                            _ips.add(onlinePlayer.getClient().getConnection().getInetAddress().getHostAddress());

                        }

                    }

                }

                _log.info("AutoVoteRewardManager: Reward for votes now!");

                Announcements.getInstance().announceToAll("All online players will be rewarded with 1BEWS,1BEAA and 3 Top-Grade Life Stone: level 76!!");

                setLastVoteCount(getLastVoteCount() + votesRequiredForReward);

            }

               

            if (getLastVoteCount() == 0)

            {

                setLastVoteCount(votes);

            }

            else if ((getLastVoteCount() + votesRequiredForReward) - votes > votesRequiredForReward || votes > (getLastVoteCount() + votesRequiredForReward))

            {

                setLastVoteCount(votes);

            }

            players22();

            Announcements.getInstance().announceToAll("We have " + votes + " vote(s). Next reward on " + (getLastVoteCount()+votesRequiredForReward) + " vote.");

            _ips.clear();

        }

    }

private void players22()

{

Collection<L2Player> pls = L2World.getInstance().getAllPlayers();

for (L2Player player : pls)

{

if (player != null)

{

        CreatureSay np4 = new CreatureSay(0, Say2.PARTY,"VoteReward","Vote us and you will be rewarded with 1BEWS,BEAA and 3 Top-Grade Life Stone: level 76!!"); 

                player.sendPacket(np4);

}

}

}

    private int getVotes()

    {

InputStreamReader isr = null;

BufferedReader in = null;

try

{

 

URL url = new URL(http);

URLConnection con = url.openConnection();

con.addRequestProperty("User-Agent", "Mozilla/4.76");

isr = new InputStreamReader(con.getInputStream());

in = new BufferedReader(isr);

String inputLine;

int voteCount = 0;

 

while ((inputLine = in.readLine()) != null)

{

if (inputLine.contains("moreinfo_total_rank_text"))

{

int Sub = 12;

switch (inputLine.length())

{

case 116:

Sub = 13;

break;

case 117:

Sub = 14;

break;

case 118:

Sub = 15;

break;

case 119:

Sub = 16;

break;

}

voteCount = Integer.parseInt(inputLine.substring(inputLine.length() - Sub, inputLine.length() - 11));

break;

}

}

return voteCount;

}

catch (IOException e)

{

e.printStackTrace();

return 0;

}

finally

{

try

{

in.close();

}

catch (IOException e)

{

 

}

try

{

isr.close();

}

catch (IOException e)

{

 

}

}

}

     

    private void setLastVoteCount(int voteCount)

    {

        lastVoteCount = voteCount;

    }

     

    private int getLastVoteCount()

    {

        return lastVoteCount;

    }

   

    private void load()

    {

        int votes = 0;

        Connection con = null;

        try

        {

            con = L2DatabaseFactory.getInstance().getConnection();

            PreparedStatement statement = con.prepareStatement("SELECT vote FROM votes LIMIT 1");

            ResultSet rset = statement.executeQuery();

 

            while (rset.next())

            {

                votes = rset.getInt("vote");

            }

            rset.close();

            statement.close();

        }

        catch (Exception e)

        {

            _log.log(Level.WARNING, "data error on vote: ", e);

        }

        finally

        {

        try

{

con.close();

} catch (SQLException e)

{

}

        }

     

        setLastVoteCount(votes);

    }

   

    public void save()

    {

        Connection con = null;

        try

        {

            con = L2DatabaseFactory.getInstance().getConnection();

            PreparedStatement statement = con.prepareStatement("UPDATE votes SET vote = ? WHERE id=1");

            statement.setInt(1, getLastVoteCount());

            statement.execute();

            statement.close();

        }

        catch (Exception e)

        {

            _log.log(Level.WARNING, "data error on vote: ", e);

        }

        finally

        {

            try

{

con.close();

} catch (SQLException e){}

        }

    }

 

    public static AutoVoteRewardManager getInstance()

    {

        return SingletonHolder._instance;

    }

     

    @SuppressWarnings("synthetic-access")

    private static class SingletonHolder

    {

        protected static final AutoVoteRewardManager _instance = new AutoVoteRewardManager();

    }

}

  • 0
Posted

το hopzone έχει αλλάξει αρχεία, δοκίμασε να βάλεις κάποιο άλλο vote reward

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Posts

    • Hi everyone, Since I’m no longer interested in L2 servers, if anyone is willing to continue the project, let me know. I’m currently selling the entire project. DM me for more information if you’re genuinely interested. I can offer limited free support for the first couple of months. It is not cheap. The sale includes the domain, the recently fully redesigned website, the updater, the interface, server files with Lucera ext source, and the database (excluding account passwords, emails, and other private information; character data can remain).   Server for test: https://lineage2.gold/download Server Info: https://lineage2.gold/info Over 110 videos YouTube playlist: https://www.youtube.com/watch?v=HO7BZaxUv2U&list=PLD9WZ0Nj-zstZaYeWxAxTKbX7ia2M_DUu&index=113  
    • You invent yourself a life - bad for you, one of the inner core dev, fernandopm, which worked hard over aCis quests from 2011 to 2016 is argentinian. I teached him back in time to work and make proper quests. My dev team comes from 10+ countries and I'm myself french. "Racist/nationalist" card ? Not working bro.   Not sure why I should thank you to send me questions, and regarding bug reports, so far, I got none of yours in either discord, gitlab, or forums. I'm sorry if you feel "ignored", but that's more a psychanalyst you need to speak with if you put emotions towards someones' appreciation over a forum. I never ignore a bug report, and if so (like skills reports), it's because I got a bigger plan (skills refactor, in that case). In any case, I delivered cookies for the bug report/fix, even if it dated of months, with proper credits over changesets. "Victim card" ? Not really working, but ok, maybe you're "emotional".   I barely make money out of aCis, for the spent time - simply selling my services, or even coding/administrating a minecraft/L2J server would make far more money. Breaking intentionally things would be stupid. If you don't understand I'm not the only one working on that pack, I can't help you. Also, the scale of edits is sometimes extreme - AI L2OFF ? 1800 files added. How do you want everything works in a single shot ? "Exploiting noobz for money" card ? Still not working, or I'm a terrible businessman.   Meanwhile - you shadow advertise your project, L2JOne (since 2017 btw) - you should maybe start by the beginning saying you're a competitor and aCis is actually a spike in your foot. That also explains why you act like that. RusAcis got the exact same strategy, speaking bad of me, saying they got unique fixes (you speak about I break things, they break and recode things 4 times sometimes, btw), but successfully reselling latest revision with poorly executed stuff. "aCis is good, Tryskell is ok, but I solve all issues in extreme low time so I can piss over him" card ? Mmmmhhhh.   Our conversation ends here if you want, I don't force ppl to speak with me if they don't want - hopefully, people would understand I'm not the arrogant one and the one who doesn't want to talk, or even collaborate. :). I understand you got your own project and got no will to improve aCis.   NOTE : I'm extremely happy for your call of ExShowServerPrimitive with getValidGeoLocation, extremely impressive. Arrogant, no. Sarcastic ? Maybe.   Good night everyone.
    • Hi. @GX-Ext, svn does not work. is there anywhere else where we can get source code? Thank you so much.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock