Jump to content

Recommended Posts

Posted

paidia thelw help...vazw to enable modify skill duration 264,14400;265,14400;266,14400;267,14400;268,14400;\

269,14400;270,14400;271,14400;272,14400;273,14400;274,14400;275,14400;\

276,14400;277,14400;304,14400;305,14400;306,14400;307,14400;308,14400;\

309,14400;310,14400;311,14400;349,14400;363,14400;364,14400;366,14400;\

367,14400;529,14400;530,14400;1032,14400;1033,14400;1035,14400;\

1036,14400;1040,14400;1043,14400;1044,14400;1045,14400;1048,14400;\

1059,14400;1062,14400;1068,14400;1077,14400;1078,14400;1085,14400;\

1086,14400;1182,14400;1189,14400;1191,14400;1204,14400;1240,14400;\

1242,14400;1243,14400;1303,14400;1397,14400;1363,14400;1362,14400;\

1416,14400;1364,14400;1365,14400;1415,14400;1414,14400;1413,14400;\

1284,14400;1310,14400;1391,14400;1390,14400;1308,14400;\

1309,14400;1461,14400;1429,14400;1002,14400;1252,14400;1251,14400;\

 

 

 

 

 

1253,14400;1006,14400;1007,14400;\1388,14400;1519,14400;1443,14400;1259,14400;1352,14400;1353,14400;1354,14400;1392,14400;1393,14400;\4703,14400;834,14400;1444,14400;4700,14400;827,14400;\

829,14400;1232,14400;\1388,14400;1499,14400;1500,14400;\1501,14400;1502,14400;1503,14400;1504,14400;\1047,14400;1307,14400;285,14400;1238,14400;\1389,14400;830,14400;4702,14400;\

1460,14400;4699,14400;\825,14400;765,14400;915,14400;914,14400;764,14400;

\826,14400;828,14400;4699,14400

 

 

 

kai trexw xana ton server kai ta buffs einai pali ta misa 19 min ta misa ena lepto...kapoios mporei na help??  baggos esy i opoiosdipote allos mporei na me help

 

 

 

DELETE this post!

  • 3 weeks later...
  • 5 weeks later...
Posted
psefti baggos kata 90% ta custom mpori na work alla ta fix pou les ine psemata ena tetio pack me tetia features exi pano apo 100 ebro kai esi to dinis jaba exw freya server l2j kai etsi nado an les alithia an perases ta fix piga na peraso kai ego afta ta dio [codeJava Force Bug.
Java CP Exploit

siga  min katso na ta kitakso ola  kai den periosan opios katexi apo java katalabeni ti leo as me sixoresi o theos pou se leo psefti tha se apantioso kai sto interlude pack pou souxa empistosini kai to ithela gia enan filo alla tora mpika stin skepsi na ton ftiakso frozen

Posted

Auto Vote System doesn't work on topzone nor hopzone( i have l2jls and l2jgs maybe i need to bind them)! When i try to import the decompiled datapack or core in eclipse it doesnt work because it asks for  user and password!!!! Any ideea??

Posted

Why auto vote reward doesn't work! That vote link cannot be changed! It's good that there is a source link that doesn't work!

 

 

 

// Source File Name:  AutoVoteRewardManager.java

 

package com.l2jserver.gameserver.instancemanager;

 

import com.l2jserver.Config;

import com.l2jserver.L2DatabaseFactory;

import com.l2jserver.gameserver.Announcements;

import com.l2jserver.gameserver.ThreadPoolManager;

import com.l2jserver.gameserver.model.L2World;

import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;

import com.l2jserver.gameserver.network.L2GameClient;

import java.io.*;

import java.net.InetAddress;

import java.net.URL;

import java.sql.*;

import java.util.*;

import java.util.logging.Level;

import java.util.logging.Logger;

import org.mmocore.network.MMOConnection;

 

public class AutoVoteRewardManager

{

    private static class SingletonHolder

    {

 

        protected static final AutoVoteRewardManager _instance = new AutoVoteRewardManager();

 

 

        private SingletonHolder()

        {

        }

    }

 

    private class AutoReward

        implements Runnable

    {

 

        public void run()

        {

            int votes = getVotes();

            AutoVoteRewardManager._log.info((new StringBuilder()).append("AutoVoteRewardManager: We now have ").append(votes).append("/").append(getLastVoteCount() + 5).append(" vote(s). Next check in ").append(160).append(" sec.").toString());

            Announcements.getInstance().announceToAll("Vote on http://L2TopZone.com");

            if(votes >= getLastVoteCount() + 5)

            {

                Collection pls = L2World.getInstance().getAllPlayers().values();

                Iterator i$ = pls.iterator();

                do

                {

                    if(!i$.hasNext())

                        break;

                    L2PcInstance onlinePlayer = (L2PcInstance)i$.next();

                    if(onlinePlayer.isOnline() && !onlinePlayer.getClient().isDetached() && !AutoVoteRewardManager._ips.contains(onlinePlayer.getClient().getConnection().getInetAddress().getHostAddress()))

                    {

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

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

 

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

                    }

                } while(true);

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

                Announcements.getInstance().announceToAll("Reward for players! Thanks for Vote.");

                setLastVoteCount(getLastVoteCount() + 5);

            }

            if(getLastVoteCount() == 0)

                setLastVoteCount(votes);

            else

            if((getLastVoteCount() + 5) - votes > 5 || votes > getLastVoteCount() + 5)

                setLastVoteCount(votes);

            Announcements.getInstance().announceToAll((new StringBuilder()).append("We have ").append(votes).append(" vote(s). Next reward on ").append(getLastVoteCount() + 5).append(" vote.").toString());

            AutoVoteRewardManager._ips.clear();

        }

 

        final AutoVoteRewardManager this$0;

 

        private AutoReward()

        {

            this$0 = AutoVoteRewardManager.this;

            super();

        }

 

    }

 

 

    private AutoVoteRewardManager()

    {

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

        if(Config.L2JMOD_VOTE_ENGINE_SAVE)

            load();

        ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new AutoReward(), 1000L, 0x27100L);

    }

 

    private int getVotes()

    {

        InputStreamReader isr;

        BufferedReader in;

        URL url = null;

        isr = null;

        in = null;

        int i;

        URL url = new URL("http://l2topzone.com/lineage2/server-info/5239/L2Sigmo.html");

        isr = new InputStreamReader(url.openStream());

        in = new BufferedReader(isr);

        String inputLine;

        do

            if((inputLine = in.readLine()) == null)

                break MISSING_BLOCK_LABEL_102;

        while(!inputLine.contains("moreinfo_total_rank_text"));

        i = Integer.valueOf(inputLine.split(">")[2].replace("</div", "")).intValue();

        try

        {

            in.close();

        }

        catch(IOException e) { }

        try

        {

            isr.close();

        }

        catch(IOException e) { }

        return i;

        IOException e;

        try

        {

            in.close();

        }

        // Misplaced declaration of an exception variable

        catch(IOException e) { }

        try

        {

            isr.close();

        }

        // Misplaced declaration of an exception variable

        catch(IOException e) { }

        break MISSING_BLOCK_LABEL_195;

        e;

        _log.warning((new StringBuilder()).append("AutoVoteRewardHandler: ").append(e).toString());

        try

        {

            in.close();

        }

        // Misplaced declaration of an exception variable

        catch(IOException e) { }

        try

        {

            isr.close();

        }

        // Misplaced declaration of an exception variable

        catch(IOException e) { }

        break MISSING_BLOCK_LABEL_195;

        Exception exception;

        exception;

        try

        {

            in.close();

        }

        catch(IOException e) { }

        try

        {

            isr.close();

        }

        catch(IOException e) { }

        throw exception;

        return 0;

    }

 

    private void setLastVoteCount(int voteCount)

    {

        lastVoteCount = voteCount;

    }

 

    private int getLastVoteCount()

    {

        return lastVoteCount;

    }

 

    private void load()

    {

        int votes;

        Connection con;

        votes = 0;

        con = null;

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

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

        ResultSet rset;

        for(rset = statement.executeQuery(); rset.next();)

            votes = rset.getInt("vote");

 

        rset.close();

        statement.close();

        L2DatabaseFactory.close(con);

        break MISSING_BLOCK_LABEL_100;

        Exception e;

        e;

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

        L2DatabaseFactory.close(con);

        break MISSING_BLOCK_LABEL_100;

        Exception exception;

        exception;

        L2DatabaseFactory.close(con);

        throw exception;

        setLastVoteCount(votes);

        return;

    }

 

    public void save()

    {

        Connection con = null;

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

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

        statement.setInt(1, getLastVoteCount());

        statement.execute();

        statement.close();

        L2DatabaseFactory.close(con);

        break MISSING_BLOCK_LABEL_76;

        Exception e;

        e;

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

        L2DatabaseFactory.close(con);

        break MISSING_BLOCK_LABEL_76;

        Exception exception;

        exception;

        L2DatabaseFactory.close(con);

        throw exception;

    }

 

    public static AutoVoteRewardManager getInstance()

    {

        return SingletonHolder._instance;

    }

 

 

    private static Logger _log = Logger.getLogger(com/l2jserver/gameserver/instancemanager/AutoVoteRewardManager.getName());

    private static final String http = "http://l2topzone.com/lineage2/server-info/5239/L2Sigmo.html";

    private static final int initialCheck = 1000;

    private static final int delayForCheck = 0x27100;

    private static final int itemId[] = {

        14169, 9143

    };

    private static final int itemCount[] = {

        1, 3

    };

    private static final int votesRequiredForReward = 5;

    private static List _ips = new ArrayList();

    private static int lastVoteCount = 0;

 

 

 

 

 

 

 

 

}

Guest
This topic is now closed to further replies.



  • Posts

    • looking for someone who has cache cleaner for h5 
    • I’m looking to buy GeoEngine compatible with L2Scripts (Essence). A test server must be provided so I can verify functionality before purchase. DM here or through Telegram: @nick77737
    • fixed !.. thank you veru much @NevesOma  someone lock it
    • OFFICIAL DEVELOPERS Undetected since : Release Updated for last patch : 29/11/2025 After payment you will receive: Product download link1 Activation key for the selected period. Free support for the duration of the product subscription.   ✅AC - Undetected ▸WINDOWS 10/11 (All versions, even 24H2) ▸INTEL / AMD ▸Our software mainly targets player wanting to cheat legitimately. . Precision. Stealth. Performance.   The external ARC Raiders cheats from stern designed to elevate your gameplay without slowing your system. Fully compatible with Windows 10/11 — Intel & AMD ready.   Our Functions: AIMBOT **Enable Aim requires a mandatory confirmation popup, so there’s zero risk of activating it by accident for users who don’t want to use it. Aimbot Aimbot Drone Fov Aim (Draw fov circle) Target Line (Draw targetline) Arrow Fov (Draw arrow fov) Visible Check (Aim visible) Humanize (Aim randomize) Custom Aim Key Fov Value / Smooth Value / Aim Delay Arrow Size & Spacing VISUALS – PLAYERS Box ESP (2D / Corner) Health / Shield Bar Skeleton ESP Distance ESP Name ESP Tracers / Player Lines Visible & Invisible Check Squad Name ESP Draw Eyes Directions Radar ESP Radar Distance ESP Players Flags (corpse/knocked/exit/alive) VISUALS – ENTITY Pickup Base ESP Drone ESP Probe Crashed ESP Apricot ESP Mullein ESP Agave ESP MossRock ESP Crate ESP Salvage Container ESP Rsr Lockers ESP Raiders Cache Esp Bin Trash Esp Shredder Esp Fruit Basket ESP Ammo Box ESP Computer ESP Backpack ESP Leaper ESP Probe ESP Mushroom ESP Cargo Ship ESP Firewall ESP Assault Rifle ESP Battle Rifle ESP SMG ESP Grenade ESP Medical Bag ESP Turret ESP Sentinel Esp Weapon Case Esp Extraction ESP All Weapons ESP Max Distance & Fade distance MISC FOV Arrow Player Count Display Custom Arrow Size & Distance Streamproof (Invisible in recordings & screenshots) External (No injection) Maximum Privacy & Security 24/7 Support Available: replies within minutes Our prices: Prices must be checked directly on our website, as they may change at any time to control sales — however, we remain among the most competitive in the market.   Discover our website   GET GOOD, GET STERN
    • I paid this guy yesterday (i got screen for the payment for proof), he told me that someone will log to send me my adena. Then he said he had some problems and couldn't send me the adena. Waited and waited and waited until he replied that he can't find the guy and he will return the money i gave him. Today still no money returned and he doesn't reply to the discord messages. If he doesn't return the money i paid or send the adena he promised in game, i will report him in every single website and many more. Stay away. I have all the discussion screenshot on discord with him. He knows who i am so he better keep his promise legit.
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

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

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

I've Disabled AdBlock