Results 1 to 7 of 7

Thread: Roman's Anti Ban

  1. #1
    Join Date
    Oct 2015
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default Roman's Anti Ban

    Hello All! This is my first little script that I wanted to post. It's fairly simplistic, but I like it. After seeing Lobster's ban report, I wanted to go ahead and post this - any feedback is absolutely welcome! Feel free to include it in any of your scripts and see how it works. It is designed to run one of its included anti-ban functions about 10% of the time the procedure is called. It has the highest chance of running a small off-client break when active, as I personally think that is one of the best anti-bans that SRL has.

    Thanks so much in advance for your input!

    Simba Code:
    //Roman's Little Anti-Ban script!
    //This procedure can be added to your script to help keep your bots safe.
    //All feedback welcome and appreciated!

    procedure lilAntiBan ();
    begin
      if random(9) = 0  then                      //Approximately 10% of the time this procedure is run an antiban feature will engage.
      case random(100) of
        0..10 : begin
            writeLn('Hovering Over Skill...');
            hoverSkill(SKILL_WOODCUTTING);        //Feel free to change this skill to suit your needs.
            wait(randomRange(750, 1400));
            end;
        11..20 : begin
            writeLn('Picking Up Mouse...');
            pickUpMouse;
            end;
        21..30 : begin
            writeLn('Looking at Random Game Tab...');
            randomGameTab(true);
            end;
        31..45 : begin
            writeLn('Acting Like a Bored Human...');
            boredHuman(true);
            end;
        46..50 : begin
            writeLn('Moving Mouse a Small Amount...');
            smallRandomMouse();
            end;
        51..90 : begin
            writeLn('Moving Outside the Client + Shortbreaking...');
            mouseOffClient(OFF_CLIENT_RANDOM, randomRange(6012, 40302));    //Yes I do like strange numbers ;)
            end;
        91..100 : begin
            writeLn('Sleeping and Moving Mouse...');
            sleepAndMoveMouse(1250 + random(2347));
            end;

        end;
    end;

  2. #2
    Join Date
    Jun 2015
    Location
    New Zealand
    Posts
    322
    Mentioned
    2 Post(s)
    Quoted
    131 Post(s)

    Default

    Congrats!

  3. #3
    Join Date
    Oct 2015
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Added to a clay miner, thank you!

  4. #4
    Join Date
    Jun 2014
    Posts
    369
    Mentioned
    14 Post(s)
    Quoted
    217 Post(s)

    Default

    writeLn('Acting Like a Bored Human...');
    ahhaahah i need to love this.
    https://villavu.com/forum/image.php?type=sigpic&userid=147422&dateline=14358  53409

  5. #5
    Join Date
    Jan 2016
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    simple and looks really good. Will help a lot of people.

  6. #6
    Join Date
    Aug 2016
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Very much human like! Congrats!
    EDIT: Really didn't see the posted date, seems really good though! lls

  7. #7
    Join Date
    Aug 2014
    Location
    UK
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Looks great! Will be using this when I start my first script.

    Good job buddy

    ('Acting Like a Bored Human...')
    Thats how you know this is good.

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
  •