Thread: [PI] Trade Dupe Fix [PI]

Results 1 to 4 of 4
  1. #1 [PI] Trade Dupe Fix [PI] 
    Banned
    Join Date
    Oct 2011
    Posts
    861
    Thanks given
    371
    Thanks received
    214
    Rep Power
    0
    So basically people are making their client send a wearitem packet in trade and it causes a dupe so here's an easy fix.

    WearItem.java
    find
    Code:
    ItemAssistant.wearItem(c, c.wearId, c.wearSlot);
    and make it
    Code:
    if (!c.inTrade) {
    			ItemAssistant.wearItem(c, c.wearId, c.wearSlot);
    		}
    or if your Itemassistant isn't static
    find
    Code:
    c.getItems().wearItem(c.wearId, c.wearSlot);
    an make it
    Code:
    if (!c.inTrade) {
    			c.getItems().wearItem(c.wearId, c.wearSlot);
    		}
    Reply With Quote  
     

  2. Thankful users:


  3. #2  
    Registered Member
    Join Date
    Apr 2008
    Age
    27
    Posts
    559
    Thanks given
    9
    Thanks received
    2
    Rep Power
    48
    Nice nice. Good job

    Reply With Quote  
     

  4. #3  
    Registered Member Cody289's Avatar
    Join Date
    May 2012
    Posts
    385
    Thanks given
    11
    Thanks received
    17
    Rep Power
    14
    good job and thanks!
    Reply With Quote  
     

  5. #4  
    The sleeper

    Ashpire's Avatar
    Join Date
    Mar 2012
    Age
    24
    Posts
    2,611
    Thanks given
    875
    Thanks received
    1,674
    Discord
    View profile
    Rep Power
    955
    Good job bro
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. would this fix trade - x dupe
    By R4nger 0wnz in forum Help
    Replies: 0
    Last Post: 06-22-2010, 01:23 PM
  2. Need Trade Dupe Fix!!!!!
    By Assault in forum Requests
    Replies: 0
    Last Post: 01-28-2010, 12:03 AM
  3. Trade dupe..? Help me fix please?
    By Origin's Bitch in forum Help
    Replies: 0
    Last Post: 01-23-2010, 05:13 PM
  4. fix dupe delta trade dupe 100%
    By George in forum Snippets
    Replies: 8
    Last Post: 04-22-2009, 09:39 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •