Page 1 of 1

Please Check.

Posted: Mon Apr 18, 2011 9:04 pm
by Aggro
Please check if this bug not working in l2jserver

Catching package Action (select yourself), send to "Sending window"
Looking for donator (or noob, enemy/etc)
Invite him to party
Ask him to show weapon/armor/epic (say him, that you will buy it for a great price)

When he put his weapon into TRADE window, you recieve TradeOtherAdd packet. (from server!)
Copy ObjectID of weapon
Select this player (donator), you will obtain packet Action. (from client)
Then change OID in this packet to the OID of weapon (from TradeOtherAdd packet)

Send Action packet to the server (you will obtain his weapon) and do relogin.
After relogin, the weapon will be in your inventory forever, and after donator put his weapon off or do relogin, he will realise, that he lost his weapon!


Re: Please Check.

Posted: Tue Apr 19, 2011 7:38 am
by smuggbg
yeap...never mess with the russians.Now when they have offi in RU I just can only imagine what kind of things they'll write...

Re: Please Check.

Posted: Tue Apr 19, 2011 8:07 am
by ExTrEmEDwarf
Fix

net.sf.l2j.clientpackets.TradeRequest.java

Code: Select all

 sm.addString(partner.getName());            player.sendPacket(sm);            return;        }++       if (player.isInParty() || partner.isInParty())+       {+           player.sendMessage("Cannot trade in party mode for security reasons");+           partner.sendMessage("Cannot trade in party mode for security reasons");+           return;+       }if (partner.getTradeRefusal())        { 

net.sf.l2j.clientpackets.RequestJoinParty.java

Code: Select all

 requestor.sendPacket(new SystemMessage(SystemMessageId.INCORRECT_TARGET));            return;        }+if (target.getActiveTradeList() != null || requestor.getActiveTradeList() != null)+           {+               requestor.sendMessage("Cannot party when having active trade");+               requestor.sendMessage("Cannot party when having active trade");+               return;+           }if (target.isInJail() || requestor.isInJail())        { 

Re: Please Check.

Posted: Tue Apr 19, 2011 9:19 am
by Aggro
This bug wont work in Freya/H5 ?

Re: Please Check.

Posted: Tue Apr 19, 2011 11:04 am
by ExTrEmEDwarf
this bug test for IL no test For freya :S