Results 1 to 6 of 6

Thread: What Is a Good Anti-Ban?

  1. #1
    Join Date
    Apr 2007
    Location
    Finland
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  2. #2
    Join Date
    Dec 2006
    Location
    Australia
    Posts
    698
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Here is my personal one im using in a woodcutting script. I modifed it from someone elses.

    SCAR Code:
    Procedure WereHuman;
    Begin
      If not(LoggedIn) then Exit;
      Begin
        Case Random(20) of
          0: HoverSkill('random', false);
          1: RandomRClickEvery(2 + Random(8));
          2: RotateEvery(20 + Random(10));
          3: LeaveScreenEvery(5 + Random(5));
          4: HoverSkill('Woodcutting', false);
          5: BoredEvery(9 + Random(24));
          6: Begin
               GameTab(1 + Random(12));
               Wait(1500 + Random(500));
               GameTab(4);
             end;
          7: SleepAndMoveMouse(1000 + Random(1000));
          8: MMouse(Random(MIX2), Random(MIY2), 0, 0);
          9: HoverSkill('Firemaking', false);
        end;
      end
    end;

  3. #3
    Join Date
    Jan 2007
    Location
    Skaville, Jamaica
    Posts
    1,117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I've always wondered, when it says

    "Case Random(20) of"

    What does the 20 stand for? Because there's only 9 choices beneath it.

    http://www.srl-forums.com/forum/Manual.php?do=AntiBan

    And I love that page on the SRL Manual.

  4. #4
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    Random 20 makes a random number between 0 and 20. There are only 9 options, so the script will only do something when the number is smaller then 10. So if the number is 11 the script wont do anything. This way you can make something happen a lot, or not
    Hup Holland Hup!

  5. #5
    Join Date
    Jan 2007
    Location
    Skaville, Jamaica
    Posts
    1,117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ohhh! Oh ok, I gotcha, thanks :P That's actually what I thought, but I thought it couldn't be right. But I see the point.

  6. #6
    Join Date
    Dec 2006
    Location
    utah
    Posts
    1,427
    Mentioned
    2 Post(s)
    Quoted
    7 Post(s)

    Default

    i kinda think SleepAndMoveMouse(1000 + Random(1000));
    is detectable but, thats what i think.

    SCAR Code:
    Procedure WereHuman;
    Begin
      If not(LoggedIn) then Exit;
      Begin  <-- you dont need another begin >?????
        Case Random(20) of
          0: HoverSkill('random', false);
          1: RandomRClickEvery(2 + Random(8));
          2: RotateEvery(20 + Random(10));
          3: LeaveScreenEvery(5 + Random(5));
          4: HoverSkill('Woodcutting', false);
          5: BoredEvery(9 + Random(24));
          6: Begin
               GameTab(1 + Random(12));
               Wait(1500 + Random(500));
               GameTab(4);
             end;
          7: SleepAndMoveMouse(1000 + Random(1000));
          8: MMouse(Random(MIX2), Random(MIY2), 0, 0);
          9: HoverSkill('Firemaking', false);
        end;
      end
    end;

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. More idea than request good anti ban
    By Crozling in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 08-04-2008, 07:34 AM
  2. Anti-X question! (anti-ban, anti-randoms)
    By jvwarrior in forum OSR Help
    Replies: 9
    Last Post: 10-31-2007, 03:09 AM
  3. Karajama auto nat runner with anti bans/ anti randoms
    By mike_2922 in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 08-16-2007, 02:40 AM
  4. need a good anti random fisher
    By code man321 in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 07-05-2007, 12:30 AM

Posting Permissions

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