Thread: [DELTA] Dupe Fix v4 [DELTA]

Page 1 of 3 123 LastLast
Results 1 to 10 of 25
  1. #1 [DELTA] Dupe Fix v4 [DELTA] 
    majin buu
    Guest
    Current Tutorial Version: [v4]

    Classes Modified: Client.java
    Difficulty: 0,01/10
    Required Knowledge: Reading, Copying, pasting and searching.
    Things you may know after reading this: Understand how SystemtimeMillis Works



    Ok to begin with i will explain what we are going to do.
    We will open the client class (client.java) and we are going to remove the code that makes the delta dupe possible.
    there are other ways of fixing this but this is the best and easiest way i know of.

    ok lets begin.

    press CTRL + F
    and search for
    Code:
    if (other.inTrade) {
    now you should be able to see this:
    Code:
    	public void tradeReq(int id) {
    		if (!server.trading) {
    			sM("Trading has been temporarily disabled");
    			return;
    		}
    		client other = (client) handler.players[id];
    		if (validClient(trade_reqId)) {
    			if (other.inTrade) {
    				sM("Other player is busy at the moment.");
    				trade_reqId = 0;
    				return;
    			}
    		}
    Look at the Other player is busy at the moment. and under that you see:
    Code:
    trade_reqId = 0;
    remove that.

    now it Should look like this:
    Code:
    	public void tradeReq(int id) {
    		if (!server.trading) {
    			sM("Trading has been temporarily disabled");
    			return;
    		}
    		client other = (client) handler.players[id];
    		if (validClient(trade_reqId)) {
    			if (other.inTrade) {
    				sM("Other player is busy at the moment.");
    				return;
    			}
    		}
    *ATTENTION* IF YOU HAVE DONE ANY OTHER ANTI-DUPE TUTORIAL
    MAKE SURE YOU HAVE THE FOLLOWING CODE IN YOUR CLIENT.JAVA:
    Code:
    			if(actionButtonId == 26018) {
    			if (inTrade && (System.currentTimeMillis() - lastButton > 1000)) {
    				lastButton = System.currentTimeMillis();
    				getClient(trade_reqId).sM("Other player has declined the trade.");
    				declineTrade();
    			}
    }
    if you do not have this you will have to add it under:
    Code:
    int interfaceID = inStream.readSignedByte();
    If you do not do that this anti-dupe will not effect the old way of duping!
    Tutorial Changes:
    -------
    v4: Shortened the turoial dramaticly and fixed it.
    v3: Strengthened declineTrade(); and closeInterface(); on declination in trade!(OLD VERSION)
    v2: Added systemtimemilli to help preventing duping (1 milli delay), Added yell to the anti dupe (purpose: Scaring the dupers!) (OLD VERSION)
    v1: Removed the 1000 milli sec time delay to prevent Duping (OLD VERSION)

    Credtis:
    Rain of Pain - 100% (Majin Buu AKA Rain of Pain)


    Thanks for reading!
    We all want to get rid of the item dupers!


    Confirmations:
    None yet.
    Reply With Quote  
     

  2. #2  
    Donator


    Join Date
    Mar 2008
    Posts
    1,945
    Thanks given
    118
    Thanks received
    201
    Rep Power
    2104
    LOL

    you must like guessing cause this dont fix more than 2 to 4 dupes theres 8 known trade dupes

    nice try
    Reply With Quote  
     

  3. #3  
    Registered Member
    Sanity's Avatar
    Join Date
    Dec 2008
    Posts
    2,062
    Thanks given
    22
    Thanks received
    362
    Rep Power
    762
    Re-opens dupes where you don't even need to re-trade the other player.

    Good attempt though.
    Reply With Quote  
     

  4. #4  
    Banned
    Join Date
    Apr 2009
    Posts
    26
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Nice! But I don't think this would work.
    Reply With Quote  
     

  5. #5  
    Fuckin PRO

    Tyler's Avatar
    Join Date
    Jan 2008
    Age
    30
    Posts
    6,023
    Thanks given
    46
    Thanks received
    507
    Rep Power
    3330
    It doesn't work, To fix the accept fast decline you need to remove the gay timer in it.
    Free Filehost Premium Accounts
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Jan 2009
    Age
    26
    Posts
    119
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    I don't need this i will just ban people that do, but this was a such nice tutorial

    rep+
    Reply With Quote  
     

  7. #7  
    Registered Member
    Sanity's Avatar
    Join Date
    Dec 2008
    Posts
    2,062
    Thanks given
    22
    Thanks received
    362
    Rep Power
    762
    Quote Originally Posted by Mage_freak6 View Post
    I don't need this i will just ban people that do, but this was a such nice tutorial

    rep+
    You will ban people that dupe? How do expect to do that before they trade out all they want already lol..
    Reply With Quote  
     

  8. #8  
    Pur3z is back!
    tehGanjaman's Avatar
    Join Date
    Jul 2008
    Age
    28
    Posts
    2,871
    Thanks given
    3,380
    Thanks received
    109
    Rep Power
    502
    looks good.
    Reply With Quote  
     

  9. #9  
    majin buu
    Guest
    thank you...it has been tested it fixes trade dupe (fast decline and the old czar trade)

    people who says other wise can go to hell...
    Reply With Quote  
     

  10. #10  
    Registered Member

    Join Date
    Mar 2008
    Age
    29
    Posts
    749
    Thanks given
    18
    Thanks received
    31
    Rep Power
    130
    Quote Originally Posted by lmctruck30 View Post
    LOL

    you must like guessing cause this dont fix more than 2 to 4 dupes theres 8 known trade dupes

    nice try
    Try abotu 13 or 14, and your TUT doesnt fix all either.
    Message me for a DETAILED security scan of your website.
    Reply With Quote  
     

Page 1 of 3 123 LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •