Thread: [Problem] Problem with Clicking Actions - Very Easy dupe!

Results 1 to 4 of 4
  1. #1 [Problem] Problem with Clicking Actions - Very Easy dupe! 
    Registered Member Timo123's Avatar
    Join Date
    Feb 2010
    Posts
    309
    Thanks given
    7
    Thanks received
    3
    Rep Power
    2
    Hello, Rune-Server i have a problem with clicking stuff.
    Example: I have 3 Boxes of Mysterious Gift.
    Way to dupe: If i now click the boxes VERY fast it will result:

    This is how it will result:
    Code:
    Clicking 3 boxes very fast or example 500Ms per click
    i will recive 6 rewards.
    Another Example:
    When you get a clickingbuttons request example clicking a dialogue to give you a phat

    Example: Dialogue says: free phat
    Way to dupe: Click the continue text very fast will result:

    This:
    Code:
    I might recive 2 Phats deepends how fast i click the dialogue
    Is this a fix? or a code that is commented out? or why is it possible doing this! i need a fix very fast
    Thanks for all Spoon feeding
    Skype: Eyohawk
    Or reply here!
    Reply With Quote  
     

  2. #2  
    Registered Member remcowp's Avatar
    Join Date
    Jan 2011
    Posts
    651
    Thanks given
    57
    Thanks received
    37
    Rep Power
    12
    Its easy to fix

    Example:

    Code:
    		case 137014:
    		if(c.lampfix == 6) {
    		c.getPA().addSkillXP(14000000,c.antiqueSelect);
    		c.getItems().deleteItem(11137, 1);
    		c.sendMessage("<col=225>750k XP added to skill chosen & the lamp is gone.");
    		c.getPA().closeAllWindows();
    		    c.lampfix = 0;
    		} else {
    		    c.getPA().closeAllWindows();
    		}
    Reply With Quote  
     

  3. #3  
    Registered Member
    TheChosenOne's Avatar
    Join Date
    Jan 2013
    Posts
    967
    Thanks given
    47
    Thanks received
    161
    Rep Power
    366
    1) Check if you have the given item at the given slot at the given interface (nearly always inventory).
    2) Change your progress status as soon as you receive the click.
    Reply With Quote  
     

  4. #4  
    Registered Member BryceTheCoder's Avatar
    Join Date
    Aug 2008
    Posts
    740
    Thanks given
    21
    Thanks received
    24
    Rep Power
    27
    Quote Originally Posted by Timo123 View Post
    Hello, Rune-Server i have a problem with clicking stuff.
    Example: I have 3 Boxes of Mysterious Gift.
    Way to dupe: If i now click the boxes VERY fast it will result:

    This is how it will result:
    Code:
    Clicking 3 boxes very fast or example 500Ms per click
    i will recive 6 rewards.
    Another Example:
    When you get a clickingbuttons request example clicking a dialogue to give you a phat

    Example: Dialogue says: free phat
    Way to dupe: Click the continue text very fast will result:

    This:
    Code:
    I might recive 2 Phats deepends how fast i click the dialogue
    Is this a fix? or a code that is commented out? or why is it possible doing this! i need a fix very fast
    Thanks for all Spoon feeding
    Skype: Eyohawk
    Or reply here!

    Easy peezy lemon squeezy!
    You can do two things. Have a variable such as a boolean like openedBox = false;
    Then for the item click this:
    Code:
    if (c.openedBox == false) {
    c.openedBox = true;
    doSomething();
    }
    BOOM!

    Ooorr add a little timer.
    Declare a long variable called like lastBox or something.
    Code:
    public long lastBox = System.currentTimeMillis();
    Then on the item click something like this:
    Code:
    if (System.currentTimeMillis() - c.lastBox > 2000) {
      c.lastBox = System.currentTimeMillis();
      doSomething();
    }

    Boom!

    Advertise your RSPS cheap on my website: www.BryceBux.com

    ^ PM me and I will give you a few dollars for FREE on my website for advertisements ^
    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. Replies: 7
    Last Post: 02-25-2011, 07:29 PM
  2. Replies: 3
    Last Post: 02-16-2011, 12:58 PM
  3. Replies: 4
    Last Post: 07-16-2010, 12:07 AM
  4. Replies: 1
    Last Post: 04-01-2010, 11:00 AM
  5. Problems with Clicking a Case[Helppp]
    By January 1st in forum Help
    Replies: 3
    Last Post: 08-27-2009, 08:41 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
  •