Results 1 to 3 of 3

Thread: Autoclicking on osrs

  1. #1
    Join Date
    Apr 2015
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Autoclicking on osrs

    Hi!

    I think a lot of you know the rsclient autoclicker. Has anyone used it recently and are there better alternatives or is it good enough? Also what is the chance of getting banned when having it open while checking the screen every few minutes?

  2. #2
    Join Date
    Apr 2013
    Posts
    680
    Mentioned
    13 Post(s)
    Quoted
    341 Post(s)

    Default

    1 - Use ACA to get colour and tolerances
    2 - Set wait time between clicks
    3 - Relax

    Code:
    program ClickStuff;
    {$DEFINE SMART}
    {$i AeroLib/AeroLib.Simba}
    Const
    
      NPC_COL = 3686304;
      NPC_TOL = 6;
      NPC_HUE = 0.03;
      NPC_SAT = 0.10;
      WAIT_TIME = 1000;
    
    //Borrowed (and altered slightly) from ghoul script by jstemper - https://villavu.com/forum/showthread.php?t=114297
    function findObject(COL, TOL : Integer; HUE, SAT: Extended): Boolean;
    var
      NPC: TColEx;
      TPA: TPointArray;
      ATPA: T2DPointArray;
      I: Integer;
      box: TBox;
        position  : TPoint;
    begin
      NPC.Create(Col, Tol, Hue, Sat);
      if not NPC.FindAllIn(Area_MS, TPA) then
        Exit(False);
      ATPA := ClusterTPA(TPA, 10);
      SortATPAFromMidPoint(ATPA, Point(MSCX, MSCY));
      if (length(ATPA) <= 0) then
      begin
        result := False;
        exit;
      end;
      for i := 0 to high(ATPA) do
      begin
        position:= middleTPA(ATPA[i]);
        HumanMMouse(position, random(5), random(5));
        fastClick(MOUSE_LEFT);
        break;
      end;
    end;
    
    procedure clickObject();
    begin
        findObject(NPC_COL, NPC_TOL, NPC_HUE, NPC_SAT);
        wait(Wait_Time+(1000));
    end;
    
    begin
     initAL;
      repeat
        clickObject
      until (false)
    end.

    <------------------>



  3. #3
    Join Date
    Dec 2011
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    12 Post(s)

    Default

    Using an autoclicker on the same pixle or near it may be a problem, but, a lot of people use auto clickers on the ardy knights and dont get banned, just make sure you monitor it and maybe change up the location of the mouse every so often. Another solution would be to use simba and make it change the mouse location every so often and even change how often it clicks.

    Ive been reading the script tutorials and making the above isn't much work.

Thread Information

Users Browsing this Thread

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

Posting Permissions

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