Results 1 to 8 of 8

Thread: ClickMouse - how du i usse

  1. #1
    Join Date
    Oct 2007
    Posts
    302
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default ClickMouse - how du i usse

    [Evilness]
    I thought i'd pick a title that would lure you!
    [/evilness]

    When scar clicks an object in runescape how long is the mouse hield 'down' for.

    Ie, when it's clicked how long is the mouse clicked for? .. Is it an exact amount of time, or does it change? ..

    And is there a way to prolong the 'clicking' as part of antiban or something? :S
    Previously known as boxcrop.


  2. #2
    Join Date
    Apr 2008
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I had the same problem with one of my scripts.
    When you use ClickMouse, the click is instaneous so some games might not be able to pick it up.

    The way I got around this was to use HoldMouse, Wait and then ReleaseMouse.

    [edit] I often use Wait(random(500)) in between the Hold and Release [/edit]
    Reality is for those who can't handle dreams...

  3. #3
    Join Date
    Jul 2007
    Location
    Norway.
    Posts
    1,938
    Mentioned
    3 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by boxcrop View Post
    When scar clicks an object in runescape how long is the mouse hield 'down' for?
    Ie, when it's clicked how long is the mouse clicked for? .. Is it an exact amount of time, or does it change? ..
    'Mouse' procedure clicks and holds down mouse button for 10 + random(50) ms. <--- Wrong, see post below.

    And is there a way to prolong the 'clicking' as part of antiban or something? :S
    I wouldn't reccomend that, but yes - it is possible.
    SCAR Code:
    HoldMouse(X, Y, true); // 'True' = left, 'false' = right.
    ReleaseMouse(X, Y, true); // Same.

  4. #4
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Well its held down for a random time of 30 miliseconds.

  5. #5
    Join Date
    Oct 2007
    Posts
    302
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by NaumanAkhlaQ View Post
    Well its held down for a random time of 30 miliseconds.
    Mhm, but is that enough? ...

    Clicking for 30 milisecs, is far to low i'd assume? :S
    Previously known as boxcrop.


  6. #6
    Join Date
    Jul 2007
    Location
    Norway.
    Posts
    1,938
    Mentioned
    3 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    {*******************************************************************************
    procedure Mouse(mousex, mousey, ranx, rany: Integer; left: Boolean);
    By: Mutant Squirrle
    Description: Moves then clicks mouse.
    *******************************************************************************}


    procedure Mouse(mousex, mousey, ranx, rany: Integer; left: Boolean);
    var
      a, b, c: Integer;
    begin
      MMouse(mousex, mousey, ranx, rany);
      Wait(60 + Random(30));
      GetMousePos(b, c);
      HoldMouse(b + 1, c, left);
      repeat
        Wait(20 + Random(30));
        a := a + 1;
      until (a > 4);
      GetMousePos(b, c);
      ReleaseMouse(b, c, left);
      Wait(100 + Random(100));
    end;

    Wait(20 + Random(30)); x5 <--

    Aww, so wrong.
    Naum, we both failed.

    Minimum time possible for the mouse to be held down is 100MS and maximum time is 250MS.

  7. #7
    Join Date
    Oct 2007
    Posts
    302
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by EvilChicken! View Post
    SCAR Code:
    {*******************************************************************************
    procedure Mouse(mousex, mousey, ranx, rany: Integer; left: Boolean);
    By: Mutant Squirrle
    Description: Moves then clicks mouse.
    *******************************************************************************}


    procedure Mouse(mousex, mousey, ranx, rany: Integer; left: Boolean);
    var
      a, b, c: Integer;
    begin
      MMouse(mousex, mousey, ranx, rany);
      Wait(60 + Random(30));
      GetMousePos(b, c);
      HoldMouse(b + 1, c, left);
      repeat
        Wait(20 + Random(30));
        a := a + 1;
      until (a > 4);
      GetMousePos(b, c);
      ReleaseMouse(b, c, left);
      Wait(100 + Random(100));
    end;

    Wait(20 + Random(30)); x5 <--

    Aww, so wrong.
    Naum, we both failed.

    Minimum time possible for the mouse to be held down is 100MS and maximum time is 250MS.
    Is that a lot of time? :S

    Perhaps we could make a script which records how long the average click is, and if it's more than 250 ms on average, then i say it should be increased :O
    Previously known as boxcrop.


  8. #8
    Join Date
    Jun 2007
    Location
    Wednesday
    Posts
    2,446
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Clicking is actually very quick - if you find one of those "how many times can you click in 10 seconds" or something to that effect, you will find you can click an average of about 10 times a second, which is around 100ms, so it's pretty good since that is you clicking as fast you possibly can and normal clicks would be a bit slower. The fact that there hasn't been mass bannage makes me think that the wait time is good
    By reading this signature you agree that mixster is superior to you in each and every way except the bad ways but including the really bad ways.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. clickmouse
    By norrisemoe in forum OSR Help
    Replies: 3
    Last Post: 02-07-2009, 09:17 PM
  2. MoveMouse, Clickmouse, Sendkeys isn't safe for RS?
    By RuneItBack2Front in forum OSR Help
    Replies: 4
    Last Post: 11-29-2008, 10:33 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
  •