Jump to content

Recommended Posts

Posted
  • Dungeon Event Instancia
  • ItemsHandler ClanItem, NobleItem, HeroItem7Days, HeroItem30Days, HeroItemEternal,
  • Add Ant-Zerg BossZone Max Clan/Ally Member Permanence Zone
  • Add Send Donate Admin Command Reward Player/name Online and Offline Player.
  • Add Premium/VIP and XP | SP | DROP | DROP-ADENA |
  • Add IconTable data/xml/icons.xml
  • Block Class Use Equipe Bow
  • Check HP Title Type Monster

 

 

Spoiler

Download Compiled Filles: https://mega.nz/file/BRYQQDzL#r7Bw4sp-3h8RtsOMFOeQU-adoEVi1rNHVvOxlZRsh2U

Trunk_399 Edit Soucer : https://mega.nz/file/pNhX3SqY#jA7_Nm8CIfstZ628fEdczTSgjFq4aDOckxdvtEZqp5o

MariaDB: https://mega.nz/file/YBIXXSgY#9xqdkVMXAXY3VPNkBs6R05rnzJ9bH6aU47y2WNLfri4 
JDK-11: https://mega.nz/file/JBYDDKJL#09VBtDqAepkTXkqnqRIsnOilEH4NJypEThHgr5fXbpY 
Navicat: https://mega.nz/file/IUhwVLCb#hv3Ak3U_s_mR66XcsXRx1EMjxE7-O6vrSj-wmxMAdcg Geodata: https://mega.nz/file/1IJjRYKI#NWsguWD4uAc3DmUB23nSxSTBRk2ipVlLFVHMki3SETc

 

Posted
6 hours ago, L2VANPER said:
  • Dungeon Event Instancia
  • ItemsHandler ClanItem, NobleItem, HeroItem7Days, HeroItem30Days, HeroItemEternal,
  • Add Ant-Zerg BossZone Max Clan/Ally Member Permanence Zone
  • Add Send Donate Admin Command Reward Player/name Online and Offline Player.
  • Add Premium/VIP and XP | SP | DROP | DROP-ADENA |
  • Add IconTable data/xml/icons.xml
  • Block Class Use Equipe Bow
  • Check HP Title Type Monster

 

 

  Hide contents


Download Compiled Filles: https://mega.nz/file/BRYQQDzL#r7Bw4sp-3h8RtsOMFOeQU-adoEVi1rNHVvOxlZRsh2U

Trunk_399 Edit Soucer : https://mega.nz/file/pNhX3SqY#jA7_Nm8CIfstZ628fEdczTSgjFq4aDOckxdvtEZqp5o

MariaDB: https://mega.nz/file/YBIXXSgY#9xqdkVMXAXY3VPNkBs6R05rnzJ9bH6aU47y2WNLfri4 
JDK-11: https://mega.nz/file/JBYDDKJL#09VBtDqAepkTXkqnqRIsnOilEH4NJypEThHgr5fXbpY 
Navicat: https://mega.nz/file/IUhwVLCb#hv3Ak3U_s_mR66XcsXRx1EMjxE7-O6vrSj-wmxMAdcg Geodata: https://mega.nz/file/1IJjRYKI#NWsguWD4uAc3DmUB23nSxSTBRk2ipVlLFVHMki3SETc

 

thank you for share, a couple of things

the first file i've open didnt tell me much about the pack and the developer

public static void unspawn()
    {
        
        NpcData table = NpcData.getInstance();
        try (Connection con = ConnectionPool.getConnection();
            PreparedStatement ps = con.prepareStatement(LOAD_HIGH_RATE);
            ResultSet rs = ps.executeQuery())
        {
            while (rs.next())
            {
                int pointer = 1;
                int npcId = rs.getInt(pointer++);
                int locX = rs.getInt(pointer++);
                int locY = rs.getInt(pointer++);
                int locZ = rs.getInt(pointer++);
                int heading = rs.getInt("heading");
                respawnTime = rs.getInt("respawn_delay");
                NpcTemplate tp = table.getTemplate(npcId);
                if (tp != null)
                {
                    _npcSpawn1 = new Spawn(tp);
                    _npcSpawn1.setLoc(locX, locY, locZ, heading);
                    _npcSpawn1.setRespawnState(true);
                    _npcSpawn1.setRespawnRandom(Config.DUNGEON_NPC_DOSPAWN);
                    Npc npc = _npcSpawn1.doSpawn(false);
                    
                    if (npc instanceof Monster)
                        npc.setInstanceId(InstanceMap.HighRateInstanceId, true);
                    else
                    {
                        // err
                    }
                    
                }
            }
            ps.execute();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }

else { error }

   
random static access

public static void Finish_Event()
    {    
        desSpawn();
        unspawnNpc2();
        _started = false;
        _finish = true;
        if (!AdminDungeon._bestfarm_manual)
        InicialDungeon.getInstance().StartCalculationOfNextEventTime();
        else
            AdminDungeon._bestfarm_manual = false;
        
        for (Player player : World.getInstance().getPlayers())
        {
            if (player != null && player.isOnline())
            {
                CreatureSay cs = new CreatureSay(player.getObjectId(), SayType.HERO_VOICE, "", ("Next Dungeon: " + InicialDungeon.getInstance().getNextTime()) + " (GMT-3)."); // 8D
                player.sendPacket(cs);
            }
        }
    }


    
con.close, wheird stuff when using try/catch with resources

protected static void desSpawn()
    {

        
        NpcData table = NpcData.getInstance();
        try (Connection con = ConnectionPool.getConnection();
            PreparedStatement ps = con.prepareStatement(LOAD_HIGH_RATE);
            ResultSet rs = ps.executeQuery())
        {
            while (rs.next())
            {
                int pointer = 1;
                int npcId = rs.getInt(pointer++);
                NpcTemplate tp = table.getTemplate(npcId);
                if (tp != null)
                {
                    if (_npcSpawn1 == null)
                        return;
                    _npcSpawn1.getNpc().deleteMe();
                    _npcSpawn1.setRespawnState(false);
                    SpawnTable.getInstance().deleteSpawn(_npcSpawn1, false);
                    

                }
                
            }
            con.close();
            ps.executeUpdate();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        
        // teleport players back, cleanup everything else
        world.destroy();
        world = null;
    }

 

overall bad coded customs, also i am not sure if this is a version of acis that can be shared but if not thank you 🙂

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

    • That’s just part of buying and selling; if your service didn't appeal to me at the time, there's no reason for me to force myself to buy it. After all, I regularly buy other interfaces and clients from other users mostly Russians using USDT. But *I'm* the child here, even though *you're* the incredibly arrogant one.   The payment method or the amounts were never the problem you were. But life goes on; you’d rather stay caught up in your delusions, thinking you’re the protagonist of some anime. Princess Alice 😂   I have all the interfaces for the 474/506/509/520/542/563/557. and olds too.  Some were created by me, including the ARENA P140 interface, which will soon be released for free. This includes everything you make available. It will no longer be a monopoly held by just a few people.   Including your clients with system. like  
    • NEW: Ryzen 9 9950X VPS now Available! Our most Powerful VPS plans now available with dedicated Zen 5 cores clocked up to 5.7 GHz, DDR5 ECC, blazing NVMe Gen4 storage (~7 GB/s), 10 Gbit/s uplink with up to 50 TB traffic, and premium Anti-DDoS included on every plan. No KYC, crypto payments accepted, deployed in minutes. ⭐ RYZEN 9 9950X VPS: [ 9.99 ] 2vCore | 6GB DDR5 | 30GB NVMe - DEPLOY [ 19.99 ] 4vCore | 12GB DDR5 | 50GB NVMe - DEPLOY [ 39.99 ] 8vCore | 24GB DDR5 | 80GB NVMe - DEPLOY [ 69.99 ] 12vCore | 48GB DDR5 | 120GB NVMe - DEPLOY - 10 Gbit/s Port included in ALL Plans - Premium Anti-DDoS included in ALL Plans - No-KYC signup, crypto payments accepted ✅ Ryzen 9 9950X VPS ( vpslab.cloud )
    • I thiunk RU Federation having issues now with paypal?
    • 👑 [FOR SALE] Lineage 2 Premium UCP – Modern Web Panel with Progression & Reward Systems. Looking for the ultimate edge to make your server boom and boost revenue? Introducing the L2 Premium UCP—the most comprehensive and modern User Control Panel on the market. Developed with a total focus on player experience (UX) and administrative automation. Say goodbye to outdated, buggy panels. Give your server the look and feel of an official game!  
  • 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..