Jump to content
  • 0

[HELP] Check this .. bug with private store :@ check photo.


Question

Posted

Hello guys

 

in my old rev on frozen i havent this bug and when i change to last i find this one ...

 

 

When i do private store and abort shop change my items to a random item and if i try to do shop again i get DC for ilegal

 

in few min i will upload images ,

 

i changed at clientpackets all new codes with old but problem exist ... wtf is this :/

i try everything without find any solution

which code give em this error?

 

 

I place 4 different items,  Max sell is 3 items , char  sit without any warning ..

and when i abort private store i see this .. if i sit again i get dc ...

 

99687178.png

14 answers to this question

Recommended Posts

  • 0
Posted

Hello guys

 

in my old rev on frozen i havent this bug and when i change to last i find this one ...

 

 

When i do private store and abort shop change my items to a random item and if i try to do shop again i get DC for ilegal

 

in few min i will upload images ,

 

i changed at clientpackets all new codes with old but problem exist ... wtf is this :/

i try everything without find any solution

which code give em this error?

 

 

I place 4 different items,  Max sell is 3 items , char  sit without any warning ..

and when i abort private store i see this .. if i sit again i get dc ...

 

99687178.png

 

Have you enabled debugging in the gameserver configuration files? What does the gameserver console say?

  • 0
Posted

Hello guys

 

in my old rev on frozen i havent this bug and when i change to last i find this one ...

 

 

When i do private store and abort shop change my items to a random item and if i try to do shop again i get DC for ilegal

 

in few min i will upload images ,

 

i changed at clientpackets all new codes with old but problem exist ... wtf is this :/

i try everything without find any solution

which code give em this error?

 

 

I place 4 different items,  Max sell is 3 items , char  sit without any warning ..

and when i abort private store i see this .. if i sit again i get dc ...

 

99687178.png

 

Attention: not based on adena, yet another crappy packet modification on your files leading to packet failure... nvm

  • 0
Posted

tell us pliz the old revision and the new revision and you if you just add the code by your self show us the code...

 

 

948 old and last rev of l2jfrozen .. i dint add anything .. gameserver dont spam any error , i done a lot tests on eclipse with old codes from 948 and problem exist ..

  • 0
Posted

i cant decrypt wht u mean :/

 

The packets of information being sent from your client are not compatible with the information the server expects.

  • 0
Posted

i cant decrypt wht u mean :/

 

sou ipa re ili9ie exeis fail costums kapios sou xalase to packet, dld to code tou shop

  • 0
Posted

all codes are clean l2jfrozen last revision .. i had add one check for one custom zoen i remove it thats all but that work at old rev without problem i remove it and replace all with last rev and problem exist ..

  • 0
Posted

So isnt any standar file that check private store when is aborted? like RequestPrivateStoreQuestSell ...

 

i change it with old revisiona nd problem exist ..

  • 0
Posted

After days searching and replace new codes with old codes i replace this one and bug fixed ...

 

 

WTF is wrong here..

 

this last revision code dont work..

/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package com.l2jfrozen.gameserver.network.serverpackets;

import com.l2jfrozen.Config;
import com.l2jfrozen.gameserver.model.TradeList;
import com.l2jfrozen.gameserver.model.TradeList.TradeItem;
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;

/**
* 3 section to this packet 1)playerinfo which is always sent dd 2)list of items which can be added to sell d(hhddddhhhd) 3)list of items which have already been setup for sell in previous sell private store sell manageent d(hhddddhhhdd) *
* @version $Revision: 1.3.2.1.2.3 $ $Date: 2005/03/27 15:29:39 $
*/
public class PrivateStoreManageListSell extends L2GameServerPacket
{
private static final String _S__B3_PRIVATESELLLISTSELL = "[s] 9a PrivateSellListSell";
private L2PcInstance _activeChar;
private int _playerAdena;
private boolean _packageSale;
private TradeList.TradeItem[] _itemList;
private TradeList.TradeItem[] _sellList;

public PrivateStoreManageListSell(L2PcInstance player)
{
	_activeChar = player;

	if (Config.SELL_BY_ITEM)
	{
		_playerAdena = _activeChar.getItemCount(Config.SELL_ITEM, -1);
	}
	else
	{
		_playerAdena = _activeChar.getAdena();
	}

	_activeChar.getSellList().updateItems();
	_packageSale = _activeChar.getSellList().isPackaged();
	_itemList = _activeChar.getInventory().getAvailableItems(_activeChar.getSellList());
	_sellList = _activeChar.getSellList().getItems();
}

/**
 * During store set no packets will be received from client just when store definition is finished.
 */
@Override
protected final void writeImpl()
{
	writeC(0x9a);
	// section 1
	writeD(_activeChar.getObjectId());
	writeD(_packageSale ? 1 : 0); // Package sell
	writeD(_playerAdena);

	// section2
	writeD(_itemList.length - _sellList.length); // for potential sells
	for (TradeList.TradeItem item : _itemList)
	{
		if (isItemInSelling(item) == false)
		{
			writeD(item.getItem().getType2());
			writeD(item.getObjectId());
			writeD(item.getItem().getItemId());
			writeD(item.getCount());
			writeH(0);
			writeH(item.getEnchant());// enchant lvl
			writeH(0);
			writeD(item.getItem().getBodyPart());
			writeD(item.getPrice()); // store price
		}
	}
	// section 3
	writeD(_sellList.length); // count for any items already added for sell
	for (TradeList.TradeItem item : _sellList)
	{
		writeD(item.getItem().getType2());
		writeD(item.getObjectId());
		writeD(item.getItem().getItemId());
		writeD(item.getCount());
		writeH(0);
		writeH(item.getEnchant());// enchant lvl
		writeH(0x00);
		writeD(item.getItem().getBodyPart());
		writeD(item.getPrice());// your price
		writeD(item.getItem().getReferencePrice()); // store price
	}
}

private boolean isItemInSelling(TradeItem item_)
{
	for (TradeList.TradeItem itemSell : _sellList)
	{
		if (itemSell.getObjectId() == item_.getObjectId())
		{
			return true;
		}
	}
	return false;
}

/*
 * (non-Javadoc)
 * @see com.l2jfrozen.gameserver.serverpackets.ServerBasePacket#getType()
 */
@Override
public String getType()
{
	return _S__B3_PRIVATESELLLISTSELL;
}
}

 

 

old code work

this one

 

/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package com.l2jfrozen.gameserver.network.serverpackets;

import com.l2jfrozen.Config;
import com.l2jfrozen.gameserver.model.TradeList;
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;

/**
* 3 section to this packet 1)playerinfo which is always sent dd 2)list of items which can be added to sell
* d(hhddddhhhd) 3)list of items which have already been setup for sell in previous sell private store sell manageent
* d(hhddddhhhdd) *
* 
* @version $Revision: 1.3.2.1.2.3 $ $Date: 2005/03/27 15:29:39 $
*/
public class PrivateStoreManageListSell extends L2GameServerPacket
{
private static final String _S__B3_PRIVATESELLLISTSELL = "[s] 9a PrivateSellListSell";
private L2PcInstance _activeChar;
private int _playerAdena;
private boolean _packageSale;
private TradeList.TradeItem[] _itemList;
private TradeList.TradeItem[] _sellList;

public PrivateStoreManageListSell(L2PcInstance player)
{
	_activeChar = player;

	if(Config.SELL_BY_ITEM){
		_playerAdena = _activeChar.getItemCount(Config.SELL_ITEM, -1);
	}else{
		_playerAdena = _activeChar.getAdena();
	}

	_activeChar.getSellList().updateItems();
	_packageSale = _activeChar.getSellList().isPackaged();
	_itemList = _activeChar.getInventory().getAvailableItems(_activeChar.getSellList());
	_sellList = _activeChar.getSellList().getItems();
}

/**
 * During store set no packets will be received from client
 * just when store definition is finished.
 */
@Override
protected final void writeImpl()
{
	writeC(0x9a);
	//section 1
	writeD(_activeChar.getObjectId());
	writeD(_packageSale ? 1 : 0); // Package sell
	writeD(_playerAdena);

	//section2
	writeD(_itemList.length); //for potential sells
	for(TradeList.TradeItem item : _itemList)
	{
		writeD(item.getItem().getType2());
		writeD(item.getObjectId());
		writeD(item.getItem().getItemId());
		writeD(item.getCount());
		writeH(0);
		writeH(item.getEnchant());//enchant lvl
		writeH(0);
		writeD(item.getItem().getBodyPart());
		writeD(item.getPrice()); //store price
	}
	//section 3
	writeD(_sellList.length); //count for any items already added for sell
	for(TradeList.TradeItem item : _sellList)
	{
		writeD(item.getItem().getType2());
		writeD(item.getObjectId());
		writeD(item.getItem().getItemId());
		writeD(item.getCount());
		writeH(0);
		writeH(item.getEnchant());//enchant lvl
		writeH(0x00);
		writeD(item.getItem().getBodyPart());
		writeD(item.getPrice());//your price
		writeD(item.getItem().getReferencePrice()); //store price
	}
}

/* (non-Javadoc)
 * @see com.l2jfrozen.gameserver.serverpackets.ServerBasePacket#getType()
 */
@Override
public String getType()
{
	return _S__B3_PRIVATESELLLISTSELL;
}
}

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

    • You think you have good “l2j” files until you try running a low-rate server.   Saying “there’s not a single L2 server out there worth mentioning” just shows you probably only know the first 10 servers on voting sites, the same voting sites that owned by them. You call the forum dead, yet you’re here discussing your next projects… From my perspective, you don’t seem ready to run any L2 server in 2025. Around 70% of players are here for RMT or ask for payment just to bring their clan, and you really think the community cares about Premium or donations or files quality? The other 20% spend their time downloading and deleting servers all day, playing for one day, then quitting for whatever random reason. And finally, the last 10% are the only ones who actually play because they genuinely like your features, your server files, and your overall project. Good luck 🙂
    • I genuinely admire your bravery - in an age where AI can whip up something better in under a minute, you still stubbornly try to sell these "projects" of yours on a forum that’s been clinically dead for years. That’s no longer determination, that’s digital archaeology. I just can’t tell whether you’re actually trying to make money, or simply testing how much we can endure before we ask an AI to generate you some actual talent.   And ofc AI will make it for free, $220 saved.
    • I’m glad I’m not the only one who appreciates Maxthor’s involvement in group gay orgies, he can’t be bothered to reply to messages, but covering the entire forum in gay lights is absolutely no issue for him. As for the project - the forum is packed with feedback from the testers, the lads are spending every spare moment fixing even the tiniest typo in an NPC’s text. I’ll share the links as soon as I get the green light. Edit: I forgot to add that the GM recruitment will begin once the links are released. Three people will be accepted, and they’ll work in a three-shift rotation so that there’s always a GM available online.
    • Added: a brand-new default dashboard template. You can now add multiple game/login server builds. Full support for running both PTS & L2J servers simultaneously, with switching between them. Payment systems: added OmegaPay and Pally (new PayPal-style API). Account history now stores everything: donations, items delivered to characters, referrals, transfers between game accounts, and coin transfers to another master account. Personal Promo Code System: you can create a promo code and assign it to a user or promoter. When donating, a player can enter this promo code to receive bonus coins, and the promo code owner also receives a bonus — all fully configurable in the admin panel.     Look demo site: demo
    • One of best project i play last few years
  • 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