Results 1 to 2 of 2

Thread: Do you think this is a good idea?

  1. #1
    Join Date
    Dec 2006
    Location
    Canada, BC
    Posts
    728
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Do you think this is a good idea?

    heyy this is probably a bad place to put it.. but i was watching my script go and thinking, the mouse kinda just sits there for long periods of time sometimes. it seems kinda bot like. So i thought well what if there was a mouse clicking function that recorded the time you moved, so you could later call another function in loops that checked the last time the mouse was moved and then preform some very simple small mouse movements. maby mouse over a random close by thing on the ground or even trigger other antiban functions. And im pretty much just asking, do you think this would be good? or would it end up in there being way to much mouse movement, and then makeing the script look even more bot like.

    also, when people are training we dont offten (or atleast i dont) keep my mouse on the runescape client while im waiting around for the tree to be chopped or the monster to be killed. usualy i have another window open surfing the web or playing some game. so with that in mind, do you think it adds to detection that scar scripts keep the mouse on the client pretty much 100% of the time? would it be benificial to have a commen point that the mouse keeps mousing off to off the rs client screen, so it makes it look like were playing around while training, and makeing us look more human like?
    Lance. Da. Pants.

  2. #2
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    SCAR Code:
    procedure SitMMouse(X, Y, Rx, Ry, MaxSitSecs : Integer);
    var
      T : Integer;

    begin
      MMouse(X, Y, Rx, Ry);
      GetSystemTime;
      repeat
        Wait(Random(10));
      until((GetSystemTime - T) = (MaxSitSecs * 1000));
      case Random(3) of  
        0 : RandomMovement;
        1 : RandomRClick;
        2 : BoredHuman;
      end;
    end;

    Sort of like that?
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

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
  •