Results 1 to 13 of 13

Thread: Skilld Anti-Ban Tut!

  1. #1
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Skilld Anti-Ban Tut!

    Skilld Ant-Ban Tut!

    In This Tut I Will Teach You:

    • Anti-Ban
    • Random Handling
    • How To Make Your Own Anti-Ban Procedures
    • And I'll Add Other Stuff Later When I Think Of Stuff


    SRL Anti-Ban Procedures:

    +RandomRClick; By: phantombmx

    This function randomly performs a right click somewhere on the RS screen.


    +HoverSkill(Skill: String; Click: Boolean); By: Dankness

    Hovers over the designated skill.

    ex.
    SCAR Code:
    HoverSkill('woodcutting', false);




    +PickUpMouse; By: dark_sniper

    Simulates a human picking up a mouse.


    +SayCurrentLevels(which: String); By: RealRune

    Gets Skill info for selected skill and says the level.

    ex.
    SCAR Code:
    SayCurrentLevels('woodcutting');


    +AlmostLogout; By: Yakman

    Pretty self explanatory, almost logs out.


    +RandomMovement; By: Krazy_Meerkat

    Randomly moves the mouse and arrow keys.


    +BoredHuman; By: WT-Fakawi

    Randomly moves the arrows, moves the mouse around and choose's option examine.


    Those are all the SRL ones that I know of or that I use, time to move on to next section.



    Making Anti-Ban Procedures With Cases:

    SCAR Code:
    procedure MyAntiBannage;
    begin
      case Random(20) of  // how often to perform, higher number less often
        0: begin
            //antiban stuff here
            end;

        1: begin
            //here too
            end;

        2: begin
            //here also
            end;

        3: etc...

    not really much to say about cases, if you don't know what they are then read a tut on them.


    Random Handling:

    +Fight Handling:
    I use this in my scripts:

    SCAR Code:
    if FindFight then  //if it finds a fight than it does this.
          begin
            RunTo('N',false);   //runs north
            Wait(10000 + random(2840));  //waits...
            RunTo('S',false);     //runs back
          end;

    +FindNormalRandoms; covers all of the other Random Events that you may get, call this and it will solve any talking randoms or inventory randoms.





    Making Your Own Anti-Ban Functions and Procedures:

    +Making your own functions can reduce the amount of bans due to the fact that less people will be using it.

    +When I make functions for anti-ban I make something that moves the mouse randomly or examines something or moves the compass.

    SCAR Code:
    procedure CompassMovement;
    var
      WeDidIt: integer;
    begin
      case Random(4) of
        0: begin  // presses the left and right arrows very fast.
             repeat
               KeyDown(VK_Left);
               Wait(50 + random(50));
               KeyUp(VK_Left);
               Wait(50 + random(50));
               KeyDown(VK_Right);
               Wait(50 + random(50));
               KeyUp(VK_Right);
               Wait(50 + random(50));
               WeDidIt := WeDidIt + 1;
             until WeDidIt = 10;
             WeDidIt := 0;
             MakeCompass('N');
           end;
        1: begin  // same here
             repeat
               KeyDown(VK_Right);
               Wait(50 + random(50));
               KeyUp(VK_Right);
               Wait(50 + random(50));
               KeyDown(VK_Left);
               Wait(50 + random(50));
               KeyUp(VK_Left);
               Wait(50 + random(50));
               WeDidIt := WeDidIt + 1;
             until WeDidIt = 10;
             WeDidIt := 0;
             MakeCompass('N');
           end;
        2: begin  //holds down the right arrow and then makes the compass North
             KeyDown(VK_Right);
             Wait(1500 + random(200));
             KeyUp(VK_Up);
             Wait(50 + random(50));
             MakeCompass('N');
           end;
        3: begin // same thing but with left arrow.
             KeyDown(VK_Left);
             Wait(500 + random(250));
             KeyUp(VK_Left);
             Wait(500 + random(250));
             MakeCompass('N');
           end;
      end;
    end;

    This is a function I made that plays with the compass. Since not as many people have this in their scripts it is less noticeable by Jagex which results in less bans .




    The End.


  2. #2
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Good to see a tut i never use anti-ban i think anti-ban is instant ban(a little then)
    ~Hermen

  3. #3
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I love teh anti-ban, i have like 200 lines in every script

  4. #4
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    haha lol it is not bad but yeah(i won't tell you guys that it is to hard for me )
    ~Hermen

  5. #5
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nub.



    jk. thanks for posting though.

  6. #6
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    K, if need some help just say (don't say in what just everything )
    ~Hermen

  7. #7
    Join Date
    Feb 2007
    Posts
    65
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow, I never knew about any of those RandomRightClick or hoverskills, looks like Ill be adding them to my scripts. Thanks.

  8. #8
    Join Date
    Jan 2008
    Location
    Alberta
    Posts
    727
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice tutorial. Maybe say to look around in the AntiBan file to see if theres a function that they like?

  9. #9
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thats where i got the SRL anti-ban procedures from.

  10. #10
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    finished. post anything else that i should add.

  11. #11
    Join Date
    Apr 2008
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is an amazing tutorial. Is editing pre-made procedures slightly also helpful? For instance if lets say instead of making your own script, you use one from the site and has "random(50)" would changing that to a different number help lessen the chances of Jagex identifying you for using the script?

  12. #12
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i guess so, but don't ever use a constant wait, use something like

    SCAR Code:
    Wait(50 + random(50));

  13. #13
    Join Date
    Sep 2008
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It's a little difficult to understand, but know I understand it a little more

    Thanks

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. special type of anti ban and anti randoms
    By Magiic in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 07-27-2008, 12:50 PM
  2. FCR by skilld u
    By skilld u in forum RS3 Outdated / Broken Scripts
    Replies: 53
    Last Post: 07-03-2008, 07:50 AM
  3. I need a script with JUST Anti-Bans and Anti-Randoms.
    By Dipped_in_Pwn_Sauce in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 11-18-2007, 02:38 PM
  4. Anti-X question! (anti-ban, anti-randoms)
    By jvwarrior in forum OSR Help
    Replies: 9
    Last Post: 10-31-2007, 03:09 AM
  5. 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

Posting Permissions

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