Jump to content
  • 0

Tradable Augmented Items


Question

8 answers to this question

Recommended Posts

  • 0
Posted
8 hours ago, KejbL said:

need edit client side >>> interface.

 

 

Can someone give me more info? which file do i have to edit in interface and which in source? 

  • 0
Posted
24 minutes ago, Eleven said:

 

Can someone give me more info? which file do i have to edit in interface and which in source? 

If you read the replies on the topic he posted for you there's all the info you need to do that.

  • 0
Posted

I managed to do it so i can see augments in trade in my inventory (TradeStart). at the rest packets im not able to do it. Also i think i need to add something in Tradelist. Im using aCis 401 and im still newbie so any help will be very helpfull. 

  • 0
Posted

Guys can someone guide me on this? this is the packet Tradestart and its working perfect:

 

package net.sf.l2j.gameserver.network.serverpackets;

import net.sf.l2j.gameserver.model.actor.Player;
import net.sf.l2j.gameserver.model.item.instance.ItemInstance;
import net.sf.l2j.gameserver.model.item.kind.Item;
import net.sf.l2j.gameserver.model.trade.TradeList;

public class TradeStart extends L2GameServerPacket
{
    private final ItemInstance[] _items;
    private final TradeList _tradeList;
    
    public TradeStart(Player player)
    {
        _items = player.getInventory().getAvailableItems(true, false, false);
        _tradeList = player.getActiveTradeList();
    }
    
    @Override
    protected final void writeImpl()
    {
        if (_tradeList == null || _tradeList.getPartner() == null)
            return;
        
        writeC(0x1E);
        writeD(_tradeList.getPartner().getObjectId());
        writeH(_items.length);
        
        for (ItemInstance temp : _items)
        {
            final 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().getId();    
                _aug = _augorg>>16;
                _aug2 = _aug;
                _aug3 = _augorg-(_aug<<16);
            }                
                writeH(_aug2);
                writeD(item.getBodyPart());
                writeH(temp.getEnchantLevel());
                writeH(0x00);
                writeH(_aug3);
        }
    }
}

 

How can i do the same on TradeOwnAdd ? Check how it is bellow:

 

package net.sf.l2j.gameserver.network.serverpackets;

import net.sf.l2j.gameserver.model.trade.TradeItem;

public class TradeOwnAdd extends L2GameServerPacket
{
    private final TradeItem _item;
    
    public TradeOwnAdd(TradeItem item)
    {
        _item = item;
    }
    
    @Override
    protected final void writeImpl()
    {
        writeC(0x20);
        
        writeH(1); // item count
        
        writeH(_item.getItem().getType1());
        writeD(_item.getObjectId());
        writeD(_item.getItem().getItemId());
        writeD(_item.getCount());
        writeH(_item.getItem().getType2());
        writeH(0x00); // ?
        
        writeD(_item.getItem().getBodyPart());
        writeH(_item.getEnchant());
        writeH(0x00); // ?
        writeH(0x00);
    }
}

Guest
This topic is now closed to further replies.


  • Posts

    • 📢 It’s Time! I was thinking… when will be the perfect time? The answer is now — no more waiting. ⏳ 3 years without L2Mid… Now we are coming strong 💪 and motivated to play again — an Interlude server ⚔️ like old school before. Here, there were good times… and now, they return. 🏆 Announcing: L2Mid New Server – x25 One of the best Lineage II experiences since 2011 is making its return. ✨ Grand Opening: 10 October 2025 🛠 Open Beta Test: 22 September – 9 October 2025 🔥 Get ready for an epic journey, fierce battles, and the community you’ve been waiting for. 💥 Let’s make history again!  
    • Stop wasting time checking if your players are live Stream Monitor does it for you, fully automatically.   ✅ Supports Twitch, Trovo, YouTube, Kick, TikTok (Facebook coming soon) ✅ Compatible with L2OFF servers via ODBC 18 (SQL Server) ✅ Automatically gives in-game rewards when streamers are live ✅ Option to give rewards manually if desired ✅ Keeps complete logs of all checks/delivery ✅ Reload configuration without restarting ✅ Windows-ready (fully tested) 📦 Available Options: 30-day license key – €50 Full source code – €400 💡 Ideal For: L2OFF server owners who want to reward active streamers automatically L2J support (coming soon) 📜 Easy Setup: Add your streamers & rewards in config.ini Run the app Sit back and enjoy hands-free streamer rewards   🚀 Coming Soon: You will soon see Stream Monitor running on L2Mid server! more updates coming soon.   discord: l2mid.com       [GENERAL] check_interval_hours = 2 [PLATFORMS] trovo = true twitch = true youtube = true tiktok = true kick = true [TWITCH] client_id = client_secret = [YOUTUBE] api_key = [DATABASE] sql_server = 127.0.0.1 database = lin2world username = sa password = 123123^&$ log_file = delivery.log [ITEMS] item1 = {"item_id": 57, "amount": 1000} item2 = {"item_id": 57, "amount": 5} item3 = {"item_id": 57, "amount": 9999} [STREAMERS_TROVO] 1 = {"username": "_BINTIK_BINTIK", "nick": "devgold"} 2 = {"username": "435tsdf", "nick": "devgold"} [STREAMERS_TWITCH] 1 = {"username": "ninja", "nick": "devgold"} [STREAMERS_YOUTUBE] 1 = {"username": "gilvandark666", "nick": "devgold"} [STREAMERS_TIKTOK] 1 = {"username": "1st.tresh", "nick": "devgold"} [STREAMERS_KICK] 1 = {"username": "serenaparis", "nick": "devgold"}  
    • No Video is not available anymore.
  • 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