Results 1 to 9 of 9

Thread: Friend banned from osrs while using my script

  1. #1
    Join Date
    Sep 2016
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default Friend banned from osrs while using my script

    So I made this Motherload Mine script in 1 day, and gave it to my friend to try. My friend used the script and got himself to 77 gold nuggets and about 1000 gold ores, 3000 coal before getting banned.

    It was like his secondary account so niether of us really care about it being banned.


    Anyways, I was suprised to see him get banned so fast. Im now changing my script heavily before I use it again.

    First off, the walking:

    Code:
    path := [Point(259, 155), Point(212, 141), Point(180, 148), Point(175, 172)];
    RSW.WalkPath(path);
    next is the color finding function I used:

    Code:
    function position1(var Position : TPoint) : Boolean;
    var
      color : TColEx;
      TPA : TPointArray;
      ATPA : T2DPointArray;
      I : Integer;
    begin
      color.create(6776944, 3, 0.70, 0.18);
      if color.findAllIn(IntToBox(MSX1, MSY1, MSX2, MSY2), TPA) then
      begin
        ATPA := ClusterTPA(TPA, 3);
        FilterTPAsBetween(ATPA, 0, 0);
        Result := (Length(ATPA) > 0);
        if Result then
        begin
          if (Length(ATPA) > 1) then
            SortATPASize(ATPA, True);
          SortTPAFrom(ATPA[0], MiddleTPA(ATPA[0]));
          I := Abs(iGaussRange(-High(ATPA[0]), High(ATPA[0])));
          Position := ATPA[0][I];
        end;
      end;
    end;
     
    function click1() : Boolean;
    var
      find : TPoint;
    begin
      for 1 to 3 do
      if position1(find) and PointInBox(find, IntToBox(MSX1, MSY1, MSX2, MSY2)) then
      begin
        Mouse(find, 0, 0, Mouse_Move);
        if isUpTextMulti(['Bank']) then
        begin
          fastClick(Mouse_Left);
          if DidClick(True, Random(830, 1200)) then
            Exit(True);
        end;
      end else
        Wait(Random(1300, 2450));
    end;

    Basically, these two parts were copied and pasted to create the script.

    Im thinking of using bitmaps now, instead of finding colors to click objects. Ill just take multiple pictures of what I need to click from different angles.

    for the walking Im making multiple different paths to get to the same place.

    I want to keep testing this script and changing things and see if I get banned less and less.

    If you want to see the full script Ill send it to you, not sure If I should post it here or not.

  2. #2
    Join Date
    Dec 2006
    Location
    Program TEXAS home of AUTOERS
    Posts
    7,934
    Mentioned
    26 Post(s)
    Quoted
    237 Post(s)

    Default

    Is this spot heavily botted by others?

  3. #3
    Join Date
    Feb 2013
    Location
    Narnia
    Posts
    615
    Mentioned
    8 Post(s)
    Quoted
    252 Post(s)

    Default

    Quote Originally Posted by P1nky View Post
    Is this spot heavily botted by others?
    Very. Then again, what isn't in the current state of Rs lol

    View my OSR Script Repository!


    Botted to max
    Guides: How to Report Bugs to the Scripter
    ~~~~ Moved to Java. Currently Lurking ~~~~

  4. #4
    Join Date
    Dec 2006
    Location
    Program TEXAS home of AUTOERS
    Posts
    7,934
    Mentioned
    26 Post(s)
    Quoted
    237 Post(s)

    Default

    Quote Originally Posted by Sk1nyNerd View Post
    Very. Then again, what isn't in the current state of Rs lol
    Ha! True

  5. #5
    Join Date
    Oct 2007
    Posts
    187
    Mentioned
    7 Post(s)
    Quoted
    61 Post(s)

    Default

    was the script ran 24/7 w/o breaks? tbh seems to me like the first thing to get ppl banned is running their scripts for extended periods of time with minimal antiban measures. try adding variable break timers and such with logouts and all that.

    second major thing I would do is use multiple paths, though I'm not up to speed on how RSW works since I don't bot osrs. Good luck with your future ventures.

  6. #6
    Join Date
    Jan 2012
    Location
    Sydney, Australia
    Posts
    877
    Mentioned
    12 Post(s)
    Quoted
    368 Post(s)

  7. #7
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    I have to agree with certain areas being heavily monitored. If you're still determined to bot in such places I would personally recommend adding lots of camera movement to your scripts, walking via the main screen, mixing left clicking with right clicking & choose options, world-hopping every so often, randomly targeting the nearest to 2nd and 3rd nearest objects, and breaks spread apart no longer than a couple hours with longer breaks around mid day. Of course this is on top of your normal anti-ban, such has occasionally checking your (relevant) skill levels.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  8. #8
    Join Date
    Mar 2018
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I believe it was just the area and the simplicity of your script.

  9. #9
    Join Date
    Dec 2016
    Location
    Michigan, USA
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    As others have said, motherlode is already heavily botted and the script could use some tune-ups

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
  •