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.
Note: Your post will require moderator approval before it will be visible.

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.



  • Posts

    • rename the l2.bin into l2.exe
    • L2LIVE.PRO- Dynamic Mid-rates Essence Seven Signs GRAND OPENING - July 5, 20:00 GMT+3 (EEST) TEST SERVER IS OPEN - COME AND CHECK IT OUT TODAY! Join our community and be part of it at: https://www.l2live.pro https://discord.gg/k3NMgR4Dmu   Server description * EXP/SP: Dynamic (x1- x100 based on your level, *before* Sayha and EXP buffs * Adena: x50 / Item Drop: x10 / Fishing EXP increased / Attribute EXP increased * Simplified gameplay to stay in the loop while not spending hours and hours farming * Starter Pack containing very useful items for beginners * MP replenishing potions with auto-consumption * No overpowered donations L2LIVE shop * All spellbook coupons, pet spellbook coupons and master books are sold via Game Assistant * Additionally you can buy SP pouches, enchanted talismans, pet training guides and various other consumables for Adena and L-Coin * More items such as cloaks, more talismans, agathions, belts, pendants, enchantment scrolls of various grades, evolution stones, etc will be added! Shop server as a shortcut, and all retail-like ways of earning items are still here! L-Coins * Drops with small change and in random amounts from Lv60+ monsters  * All raidbosses drop random amount of L-Coin Pouches generating up to 420 Lcoin per unit. **Grand Olympiad and Events** * Grand Olympiad is held week day * Format is 1v1, unlimited weekly fights  * Heroes are declared weekly at Sunday * There are three automated events - TvT, CTF and Deathmatch, running at evenings * Orc Fortress, Battle with Balok, Keber Hunter, Archievements Box, Daily Gift Calendar provisional events are active too Custom user commands * .offlineplay command, your character will keep playing till death or server restart * .offlineshop command, keeps your shop sitting until all items are purchased * .apon / .apoff - enable/disable HP/MP autoconsume And lots of other small improvements are waiting for you!   Join our community and be part of it at: https://www.l2live.pro https://discord.gg/k3NMgR4Dmu
  • Topics

×
×
  • Create New...