Results 1 to 3 of 3

Thread: detectable procedure

  1. #1
    Join Date
    Aug 2006
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default detectable procedure

    hi, below i have a mining procedure for my first script, someone has told me that the mouse movement is very detectable, what code can i use to replace it?

    procedure Mine;
    begin
    if(FindColor(x,y,OreColor,0,0,600,600)) then
    begin
    Wait(100+random(200));
    MoveMouseSmoothEx(x,y +random(0),20,40,45,25,20);///GET RID OF THIS !!! ITS SO
    //Detectable!!!!
    Wait(100+random(10));
    ClickMouse(x,y,true);//THIS TO REPLACE THESE WITH MOUSE OR MMOUSE
    Wait(800+random(200));
    end;
    end;

  2. #2
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    SCAR Code:
    MMouse(x, y, 4, 4); //Moves the mouse to x, y with a randomness of 4, 4
    Mouse(x, y, 4, 4, true); //Clicks at x, y with a randomness of 4, 4
    Interested in C# and Electrical Engineering? This might interest you.

  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 aspolokmon View Post
    hi, below i have a mining procedure for my first script, someone has told me that the mouse movement is very detectable, what code can i use to replace it?

    procedure Mine;
    begin
    if(FindColor(x,y,OreColor,0,0,600,600)) then
    begin
    Wait(100+random(200));
    MoveMouseSmoothEx(x,y +random(0),20,40,45,25,20);///GET RID OF THIS !!! ITS SO
    //Detectable!!!!
    Wait(100+random(10));
    ClickMouse(x,y,true);//THIS TO REPLACE THESE WITH MOUSE OR MMOUSE
    Wait(800+random(200));
    end;
    end;
    Lol thats the procedure that i fixed for you. Post above anwsered your question.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How detectable?
    By bloodargon in forum OSR Help
    Replies: 5
    Last Post: 03-24-2008, 11:17 PM

Posting Permissions

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