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

    • HURRY TO BUY ADENU ONLY THE BEST PRICES!!
    • 12-07-2025 - OUR TOPIC IS RELEVANT! CONTACT US BY THE CONTACTS BELOW
    • Hundreds of players have already jumped into the world of L2Elixir x3, and the server grows bigger every day! A truly international community is forming — EU, NA, LATAM, Asia — all gathering for the same purpose: To relive the L2Elixir era the right way. Join now and be part of the early wave!   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs   🎄 Christmas Event Activated! 🎄 Craft your Ordinary or Special Christmas Tree, place it outside of a peace zone, and enjoy festive outfits, boosted EXP/SP, Adena, and Drop Rates, plus the Holiday Festival buff  (more HP/MP/CP, higher P.Def/P.Atk/M.Atk, faster movement, reduced MP cost!) every 12-hours! 🎁 Santa’s Hourly Gifts While you’re actively farming, Santa appears worldwide to drop special rewards such as: Special Christmas Tree Christmas Red Sock Santa’s Weapon Exchange Ticket (12h) Gift from Santa Santa Hats & Rudolph accessories Agathion: Rudolph Chest of Experience Shadow Hats Scrolls Event b.soe / b.rez Loot Crates 🔥 Santa’s Weapon Ticket Gives you a D/C/B-grade weapon based on your level, randomly enchanted +4 to +10!  4-hour expiration time. Celebrate, fight, farm — and let Santa upgrade your holidays! 🎅✨
    • what do u mean i want to change the normal weapons some weapons are working perftect some not getting th effect and the arcana has the effect above the weapons as u see ... i dont what is the probkenm
    • Stop paying for files that are already public and free. Here you can download a fully working Interlude server with C4-like gameplay, including source code so you can compile it yourself and verify everything. People will try to convince you that free releases are “broken”, “full of backdoors”, etc. That’s exactly why I’m also providing the SVN with the full source – so you can: Review the code yourself Remove / modify whatever you don’t like Compile your own binaries What’s included GX-EXT Interlude server (C4-style gameplay) – L2Off Client Interlude tweaked for C4 gameplay Public SVN with source code Downloads: Server GX-EXT: https://www.mediafire.com/file/q5ipkjd36tnhfxv/L2OFF_C4_C4_ACU_GXEXT.rar/file Client Interlude C4 Gameplay: https://www.mediafire.com/file/rdkfc8wwau042oh/Cliente_Interlude_Jugabilidad_C4.rar/file SVN (source code, delayed a couple of months to avoid reselling fresh work): https://svn.l2servers.com.ar/!/#GX-EXT_INTERLUDE User: gx Pass: gx How to compile To compile the source you will need: Visual Studio 2005 (x64 toolset) (Classic L2Off toolchain – yes, it’s old, but that’s what the original server uses.) Use this as you want: learn, test, open your own server, or just audit the code. But please, stop buying the same leaked/resold files over and over when you can get them here for free, with source, and actually know what you’re running.  
  • 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