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!
Please Check.
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
- smuggbg
- Posts: 109
- Joined: Wed Mar 02, 2011 2:39 pm
- Location: Bulgaria
Re: Please Check.
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...
- ExTrEmEDwarf
- Posts: 73
- Joined: Wed Sep 23, 2009 5:38 pm
Re: Please Check.
Fix
net.sf.l2j.clientpackets.TradeRequest.java
net.sf.l2j.clientpackets.RequestJoinParty.java
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()) {
-
- Posts: 17
- Joined: Sun Oct 24, 2010 3:34 pm
Re: Please Check.
This bug wont work in Freya/H5 ?
- ExTrEmEDwarf
- Posts: 73
- Joined: Wed Sep 23, 2009 5:38 pm
Re: Please Check.
this bug test for IL no test For freya :S