Results 1 to 9 of 9

Thread: Is this safe in terms of detectablity

  1. #1
    Join Date
    Feb 2007
    Posts
    419
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Is this safe in terms of detectablity

    I'm writing a aircrafter and it can't always find the DDTM's (because their off screen) so it moves up alittle using this script
    Code:
         begin
         z:=0
           repeat
             z:=z+1
             MoveMouse(260+20*z, 200);
             wait(100);
           until ((rs_GetUpText='Walk here') or (z>5))
           Mouse(250, 200+20*z, 20, 5, true);
         end;
    is that going to get accounts banned (assume it does it once or twice every 4 minutes)

  2. #2
    Join Date
    Jun 2007
    Location
    Belgium
    Posts
    333
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Don't think it will get you banned, as there is some randomising in the end. Just wondering if it will work, cause you add 20*z to the x value untill it finds the uptext, once it finds it, it clicks on a location where you add 20*z to the y value.

  3. #3
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Also, don't use MoveMouse. MMouse is what you should use for RS.

  4. #4
    Join Date
    Jan 2007
    Location
    Ausrtalia, Melbourne
    Posts
    209
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    is MMouse and MoveMouse the same?

    Use MoveMouseSmoothEx(...etc)

    i think thats quite unhelpful what i said. i dunno im at school and bored

  5. #5
    Join Date
    Jun 2007
    Location
    Wednesday
    Posts
    2,446
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    MMouse(x,y,Randx,Randy); - Same as MoveMouse except you put values in that are used to randomize the location (same as doing x+Random(Randx) except a bit simpler). So it's got the same setup as Mouse except without the LeftClick boolean.

  6. #6
    Join Date
    Jan 2007
    Location
    Ausrtalia, Melbourne
    Posts
    209
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks,
    man i this is still like quantim physics to me

  7. #7
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Nono, not complicated at all, instead of

    ClickMouse(X, Y, True/False)

    you do

    Mouse(X, Y, 2, 2, True/False)

    so it moves more humanlike and arrives to destination with 2 random. (2 was just an example, but 2 is good...)

  8. #8
    Join Date
    Feb 2007
    Posts
    419
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Psychor - sorry this was my middle one, i changed that right after

    and i'm using MoveMouseSmoothEx(250, 200+20*z,1,2,30,20,15);
    thanks for the advice!

  9. #9
    Join Date
    Jan 2007
    Location
    Ausrtalia, Melbourne
    Posts
    209
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i take back at what i said was quantim physics, all i need was a good example, thanks n3ss3s

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Is it safe to....?
    By joeyfeduka in forum RuneScape News and General
    Replies: 12
    Last Post: 02-26-2008, 03:08 AM
  2. Is it Safe?
    By Hurgymcgurgygurg in forum Bot Information and Spottings
    Replies: 3
    Last Post: 02-18-2008, 04:12 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
  •