Hello guys, I will just write down the name of the dupes and the solutions under them in this post ok here we go.
1> Move item in inventory dupe.
Solution:
Put this in MoveItem.java:
if(c.inTrade) {
c.getTradeAndDuel().declineTrade();
return;
}
if(c.tradeStatus == 1) {
c.getTradeAndDuel().declineTrade();
return;
}
if(c.duelStatus == 1) {
c.getTradeAndDuel().declineDuel();
return;
}
When moving items around in your inventory it decline's a trade and duel.
So it prevents you from trading/dueling while moving items. So that dupe
will be fixed.
2> Bank & Trade Dupe:
Solution:
Openup Bankall.java and add this under "case 5064:"
if(c.inTrade) {
c.sendMessage("You can't store items while trading!");
return;
}
This prevents you from banking while in the trade screen.
3> Drop & trade Dupe:
Solution:
Openup DropItem.java and put this in it:
if(c.inTrade) {
c.sendMessage("You can't drop items while trading!");
return;
}
Prevents the person from dropping there items while trading there items.