Jump to content

L2JaCis 399 Custom Edit L2JDev


Recommended Posts

  • 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

 

  • Thanks 1
Link to comment
Share on other sites

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 🙂

  • Haha 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...