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

    • 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!  
    • Here I agree with you, because I get tired of clients like you and I don’t see any problems. Since you act in such a strange way, I’ll mirror it back to you, little brother.   Alice will even post a correspondence with you where you've been asking the same stupid questions (about prices or products) for three years and let everyone look and draw two personal conclusions about you (you're a little child)     If anyone wants to add you as a buyer to their group, let them take you hand and foot. I'll even help you pack you into an iron box.   Let's look at your last reply where you wish me luck in sales but then immediately run off to complain on the forum  yes, that's what people like you do and yes, I don't want to see people like you in my group or anywhere near it.   We're freelancing here, and yes, at first I check for loyalty and patience with clients, but when year after year they only ask me about prices - you know, if someone needs this, it's definitely not me.   Go with God, little brother, and find happiness in your life and stop making kindergarten on forums.😂   I don't need clients like that for free - who can't even look at payment methods and immediately become aggressive - and you always use free goods, just like your favorites from the Brazilian forum, you apparently have a fever about this - I have nothing against it - we had a nice conversation, everything is fine.            
    • Looking to release interface source from newer clients, if you got a client message me on discord: ilikebeer.
  • 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..