[SOLVED] ItemAuction bid don't work
Posted: Sat Apr 19, 2014 3:17 am
L2J Revision Number: 4413
L2JDP Revision Number: 7664
Hi Guys! I'm trying to port ItemBroker(itemacution) system from CT2.5(L2J: 5133, DP:8404) to CT2.4. Whole system seems to be working until auction starts (no errors in logs only info about auction time etc.). Everything look normal but players can't make bid - nothing happens when I use any button. Anyone know how to fix it?

Edit...
Ok I manage to fix this problem. I made mistake in L2GamePacketHandler.java
Correct version is:
L2JDP Revision Number: 7664
Hi Guys! I'm trying to port ItemBroker(itemacution) system from CT2.5(L2J: 5133, DP:8404) to CT2.4. Whole system seems to be working until auction starts (no errors in logs only info about auction time etc.). Everything look normal but players can't make bid - nothing happens when I use any button. Anyone know how to fix it?


Edit...
Ok I manage to fix this problem. I made mistake in L2GamePacketHandler.java
Code: Select all
case 0x39:// RequestBidItemAuctionbreak;case 0x3a:// RequestInfoItemAuctionbreak;
Code: Select all
case 0x39:msg = new RequestBidItemAuction();break;case 0x3a:msg = new RequestInfoItemAuction();break;