Results 1 to 3 of 3

Thread: Small issue with clicking problem.

  1. #1
    Join Date
    Apr 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Small issue with clicking problem.

    So here is what I am using at the moment..

    MouseBankSlot(1, mouse_Right);
    WaitOption('All', 500);

    It goes to the first slot in bank and right clicks to withdraw all, however sometimes it goes too fast to slot 1 and clicks something different and withdraws it..

    So I was wondering how to go about making it go to location first, then wait say a second or so, then right click.
    Essentially MouseBankSlot(1, wait(1000), mouse_Right); But clearly that isn't how lol

    Any suggestions?

  2. #2
    Join Date
    Apr 2013
    Location
    England
    Posts
    223
    Mentioned
    2 Post(s)
    Quoted
    106 Post(s)

    Default

    what i tend to use is something like this:

    Code:
          MMouse(xc, yc, 2, 2);
          wait(randomrange(50,150));
          if( IsUpTextex('PART OF THE NAME OF YOUR OBJECT') then
            ClickMouse2(True);
    thats for a left click, right click would be CLickMouse2(False);

  3. #3
    Join Date
    Sep 2012
    Location
    Australia.
    Posts
    839
    Mentioned
    16 Post(s)
    Quoted
    225 Post(s)

    Default

    You could also use a DTM to find your object, and if it finds it moves the mouse there, right clicks and withdraws all.

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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