Jump to content

Recommended Posts

Posted
18 hours ago, arm4729 said:

Hey thank you for sharing your TradeWnd.uc !! I have tryed and got same results with blank space after <Augment Effects> , but i have changed

 

    itemInfo.RefineryOp2 = itemInfo.Blessed;
    itemInfo.RefineryOp1 = itemInfo.Damaged;

 

to

    itemInfo.RefineryOp2 = itemInfo.Damaged;
    itemInfo.RefineryOp1 = itemInfo.Blessed;

 

 

 

and managed to get it work but only showing ++ stats and not show what passive skill / active skill item has , this is getting weird 😃

 

unknown.png

Where is this text Maximum HP +80 comming from ? is some editable .dat file ?

 

You also need to change this packets, so you can see item augment when you add it to the trade

TradeOwnAdd
TradeItemUpdate
TradeOtherAdd


i have same issue with interface, but for some augments i can see skill for some other i cant

Безимени-1.png

Posted
18 minutes ago, FeeLings said:

 

You also need to change this packets, so you can see item augment when you add it to the trade

TradeOwnAdd
TradeItemUpdate
TradeOtherAdd


i have same issue with interface, but for some augments i can see skill for some other i cant

Безимени-1.png

 

I see client side you found in me server interface 😄

You almost figure out how it work 😄 

Ok this is last part what u need:

download.png.b4fde3f866d766ff1e1411d5b3e1db11.png

Posted (edited)
15 hours ago, wongerlt said:

 

I see client side you found in me server interface 😄

You almost figure out how it work 😄 

Ok this is last part what u need:

download.png.b4fde3f866d766ff1e1411d5b3e1db11.png

unknown.png

2+2=4 quick maths

Finally victory !!! Thank you sir , you are pure genius ! don't understand that maths you did there with the bits move left move right (16>>) , this was impossible without your tips.. thx 

will try to do same for private store sell next 😄

unknown.png?width=383&height=633

Edited by arm4729
Posted
9 hours ago, arm4729 said:

unknown.png

2+2=4 quick maths

Finally victory !!! Thank you sir , you are pure genius ! don't understand that maths you did there with the bits move left move right (16>>) , this was impossible without your tips.. thx 

will try to do same for private store sell next 😄

unknown.png?width=383&height=633

 

yes for private store must work i think, there are 2 unused vars.

download.png

30 minutes ago, wongerlt said:

 

yes for private store must work i think, there are 2 unused vars.

download.png

first 0x00 - blessed, second 0x00 - damaged.

  • Thanks 1
Posted
On 2/11/2022 at 9:15 PM, arm4729 said:

unknown.png

2+2=4 quick maths

Finally victory !!! Thank you sir , you are pure genius ! don't understand that maths you did there with the bits move left move right (16>>) , this was impossible without your tips.. thx 

will try to do same for private store sell next 😄

unknown.png?width=383&height=633

which package did you change?

Posted (edited)
5 hours ago, Williams said:

which package did you change?

PrivateStoreListSell / PrivateStoreManageListSell / TradeItem / 

 

Does anyone know how to edit an already custom interface.u ? , and with edit i mean adding 2 lines to TradeWnd / PrivateStoreWnd ? Can someone decompile please this https://www.mediafire.com/file/fv9pnnp0v76m9ac/interface.u/file interface.u into .uc files ?

Edited by arm4729
Posted
32 minutes ago, arm4729 said:

PrivateStoreListSell / PrivateStoreManageListSell / TradeItem

 

Does anyone know how to edit an already custom interface.u ? , and with edit i mean adding 2 lines to TradeWnd / PrivateStoreWnd ? Can someone decompile please this https://www.mediafire.com/file/fv9pnnp0v76m9ac/interface.u/file interface.u into .uc files ?

 

 

M4CMY8s.png 

TradeStart needs to be implemented too.

Posted
3 hours ago, Williams said:

 

 

M4CMY8s.png 

TradeStart needs to be implemented too.

public class TradeStart extends L2GameServerPacket
{
    private final Player _activeChar;
    private final ItemInstance[] _itemList;

    
    public TradeStart(Player player)
    {

        _activeChar = player;
        _itemList = player.getInventory().getAvailableItems(true, false);
    }
    
    @Override
    protected final void writeImpl()
    {
        if (_activeChar.getActiveTradeList() == null || _activeChar.getActiveTradeList().getPartner() == null)
            return;
        
        writeC(0x1E);
        writeD(_activeChar.getActiveTradeList().getPartner().getObjectId());
        writeH(_itemList.length);
        
        for (ItemInstance temp : _itemList)
        {
            if (temp == null || temp.getItem() == null)
                continue;
            
            Item item = temp.getItem();
            
            writeH(item.getType1());
            writeD(temp.getObjectId());
            writeD(temp.getItemId());
            writeD(temp.getCount());
            writeH(item.getType2());
            //
            int _augorg = 0;
            int _aug = 0;
            int _aug2 = 0;
            int _aug3 = 0;
            if (temp.isAugmented()) {
                _augorg = temp.getAugmentation().getAugmentationId();    
                _aug = _augorg>>16;
                _aug2 = _aug;
                _aug3 = _augorg-(_aug<<16);
            }

            
            if (temp.isAugmented())
                writeH(_aug2);
            if (temp.isAugmented() == false)
            writeH(0x00);
            writeD(item.getBodyPart());
            writeH(temp.getEnchantLevel());
            writeH(0x00);
            if (temp.isAugmented())
            writeH(_aug3);
            if (temp.isAugmented() == false)
            writeH(0x00);

             
        }
    }
}

  • Thanks 1

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

    • There was a time when SMS and MMS actually meant something. 📱 You’d hear that message tone, your heart would skip a beat — who texted? what did they say? Every “Hey :)” mattered, because every SMS cost money, and an MMS? That was pure luxury.     Now it’s simpler — no waiting, no saving characters, no wondering if it’ll deliver. You just go to VibeSMS.net — pick a country, choose a number, and get your code in seconds. ⚡     Back then we cherished every message. Now we just make sure everything gets delivered.   🌐 Website: vibe-sms.com 📢 Telegram Channel: https://t.me/vibe_sms
    • I fixed it now my friends can join too, with what do you want help with? Also can you upload the interlude client of gx-ext for c4? just to have it because i deleted the rar i just have the folder
    • me ayudas a montar ese pack por que no entiendo tanto es para tener de prueba
    • GX-C4 pack, its ok...just used it.
    • This post originally appeared on MmoGah. Arena Breakout: Infinite is a hardcore tactical extraction shooter that demands precision, patience, and strategy. This guide will walk you through everything a beginner needs to know—from gear and combat to survival and extraction.     What Is Arena Breakout: Infinite? Arena Breakout: Infinite (ABI) is a free-to-play online extraction shooter developed by MoreFun Studios and released on Steam in September 2025. Unlike traditional battle royales, ABI focuses on risk vs. reward rather than being the last one standing. Players enter instanced maps called "raids," where they must scavenge loot, survive enemy encounters, and extract safely.   Core Gameplay Mechanics 1. Raids and Extraction Each raid features 4–6 teams (solo or squad) dropped into a map. The goal is to loot valuable items and extract through designated points. Extraction is not exclusive—multiple teams can leave the map alive. 2. PvPvE Combat You'll face both human players and AI enemies. AI can be unpredictable and deadly, especially in high-tier zones. 3. No Hand-Holding ABI offers no tutorials or guidance. You learn by dying—and surviving.   Gear and Loadouts 1. Choose Wisely Your gear determines your survivability. Armor, helmets, and medical supplies are essential. Weapons vary in recoil, damage, and handling. Start with low-cost rifles like the AKS-74U or MP5. 2. Insurance System You can insure gear to recover it if you die and it isn't looted. Use insurance for expensive items, but don't rely on it blindly. 3. Backpacks and Storage Larger backpacks allow more loot but make you a bigger target. Organize your inventory to quickly access meds and ammo during combat.   Tactical Tips for Beginners 1. Know What to Loot Prioritize high-value items like weapon parts, medical kits, and rare electronics. Learn loot hotspots on each map—warehouses, bunkers, and military zones often yield better gear. 2. Sound Is Everything Footsteps, gunfire, and reloads are loud. Use headphones and move cautiously. Crouch-walking and slow peeking reduce noise and improve stealth. 3. Map Knowledge Study maps offline or in low-risk raids. Learn extraction points, choke zones, and sniper nests. 4. Stamina Management Sprinting drains stamina, which affects aim and movement. Rest in safe zones and avoid overexertion during firefights.   Combat and Survival 1. Engage Smartly Don't chase kills—survival and extraction are the real goals. Use cover, lean mechanics, and suppressive fire to control fights. 2. Healing and Damage ABI features a detailed health system: limbs can be fractured, bleeding, or disabled. Carry splints, bandages, and painkillers. Know how to treat each condition. 3. Death Is a Lesson You will die—a lot. Use each death to learn positioning, gear value, and enemy behavior.   Progression and Economy 1. Free-to-Play Friendly ABI is generous with starter gear and daily rewards. You can earn the currency Arena Breakout: Infinite Koens through successful raids and selling loot. 2. Marketplace Trade gear with other players or sell to vendors. Prices fluctuate—learn market trends to maximize profit. 3. No Skill Trees Unlike similar games, ABI doesn't use operator skills. Progression is gear-based and tactical, not RPG-style.   Settings and Optimization 1. Graphics and Performance Lower shadows and post-processing for better visibility. Use high FPS settings for smoother combat. 2. Keybinds Customize controls for quick access to healing, leaning, and inventory. Practice muscle memory in offline raids. 3. Audio Settings Maximize footstep and gunfire volume. Reduce ambient noise to focus on threats.   Beginner Loadout Recommendation Slot Item Notes Primary Gun AKS-74U or MP5 Low recoil, easy to handle Secondary Pistol (optional) Backup for emergencies Armor Basic Vest Better than nothing Helmet Light Helmet Protects against headshots Backpack Medium Balance between space and size Meds Bandages, Splints Treat bleeding and fractures Ammo 2–3 extra mags Always reload before fights         Final Advice for New Players Start slow: Don't rush into high-tier zones. Learn the basics in low-risk areas. Play with friends: Squad play improves survival and makes learning easier. Watch and learn: Study streamers and guides to understand advanced tactics. Don't hoard: Use your gear. Hoarding leads to stagnation and fear of loss. Extract often: Surviving and extracting builds confidence and resources. Arena Breakout: Infinite is brutal, but deeply rewarding. With patience and practice, you'll evolve from a terrified scavenger to a confident operator. Every raid is a story—make yours one of survival and triumph.
  • 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