Results 1 to 7 of 7

Thread: Anti Log out help

  1. #1
    Join Date
    May 2007
    Location
    Some where fun.
    Posts
    2,891
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default Anti Log out help

    When i run this while im playing rs.. and i dont move mouse .. it will move the mouse to a specific cord ... like clickmouse.. and thats very detectable so does anyone no a better way to randomaly move mouse on the screen...

    SCAR Code:
    program new;

    {.include srl/srl.scar}

    Procedure Anti;
    begin
    wait (2090)
    MouseBox(MSx1, MSy1, MSx2, MSy2, 3);
    wait(2999)
    end;

    Procedure IsItMoving;
    var
    xx,yy: integer;
    begin
    GetMousePos(x,y)
    Wait(2000+Random(500))
    GetMousePos(xx,yy)
    if x=xx then
    begin
    if y=yy then
    begin
    Status('Moving Mouse')
    Anti;
    end;
    end;
    end;

    begin
    repeat
    IsItMoving;
    until(false)
    end.

  2. #2
    Join Date
    Feb 2007
    Location
    SparklesProd.com
    Posts
    2,406
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Use MMouse.

    Add co-ord's onto it that are random.

    Example:

    MMouse(0+Random(750),0+Random(500), 2, 2);

    That will move the mouse to a totally random co-ordinate of the screen every time.

    Hope I helped.

  3. #3
    Join Date
    May 2007
    Location
    Some where fun.
    Posts
    2,891
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Sp0rk-eh View Post
    Use MMouse.

    Add co-ord's onto it that are random.

    Example:

    MMouse(0+Random(750),0+Random(500), 2, 2);

    That will move the mouse to a totally random co-ordinate of the screen every time.

    Hope I helped.
    It does the same thing as the other function i have.. the mouse disappeers and reappeers in a new coord.. maybe its rs update

  4. #4
    Join Date
    Feb 2007
    Location
    SparklesProd.com
    Posts
    2,406
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Only jumps if you haven't set up srl

    SCAR Code:
    program new;
     
    {.include srl/srl.scar}
     
    Procedure Anti;
    begin
    wait (200)
    MMouse(0+Random(750),0+Random(500), 2, 2);
    wait(2000+random(1000))
    end;
     
    Procedure IsItMoving;
    var
    xx,yy: integer;
    begin
    GetMousePos(x,y)
    Wait(2000+Random(500))
    GetMousePos(xx,yy)
    if x=xx then
    begin
    if y=yy then
    begin
    Status('Moving Mouse')
    Anti;
    end;
    end;
    end;
     
    begin
    SetupSRL;
    repeat
    IsItMoving;
    until(false)
    end.

    Try that.

  5. #5
    Join Date
    Aug 2007
    Posts
    282
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Your standards are terrible ! i expected more from you sp0rk...

    but dont worry i fixed them

    SCAR Code:
    program new;
    {.include srl/srl.scar}

    Procedure Anti;
    begin
      wait(200);
      MMouse(0+Random(750), 0+Random(500), 2, 2);
      wait(2000+random(1000));
    end;

    Procedure IsItMoving;
    var
      xx,yy: integer;
    begin
      GetMousePos(x,y);
      Wait(2000+Random(500));
      GetMousePos(xx,yy);
      if x=xx then
      begin
        if y=yy then
        begin
          Status('Moving Mouse')
          Anti;
        end;
      end;
    end;

    begin
      SetupSRL;
      repeat
        IsItMoving;
      until(false)
    end.

  6. #6
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Because your standards on post 1 are terrible too? He didn't bother to fix em if you didn't either.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  7. #7
    Join Date
    May 2007
    Location
    Some where fun.
    Posts
    2,891
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by hy71194 View Post
    Because your standards on post 1 are terrible too? He didn't bother to fix em if you didn't either.
    Everybody scar froze when i put setupsrl...

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. 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
  3. Anti-X question! (anti-ban, anti-randoms)
    By jvwarrior in forum OSR Help
    Replies: 9
    Last Post: 10-31-2007, 03:09 AM
  4. 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
  •