Results 1 to 17 of 17

Thread: [Help] Is this detectable?

  1. #1
    Join Date
    Apr 2007
    Location
    Bridgeport
    Posts
    113
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [Help] Is this detectable?

    Hey I found this great old script that would barely move your mouse to make you stay logged in.. very useful for fishing or wcing...

    I'm just wondering if I can use it without ban. Since it's old I'm wondering if it might be easily detected

    Here's the script.. it would be great if someone could convert it to SRL so it's the exact same thing

    SCAR Code:
    program Online;
    {.include SSI2.txt}
    var
    x1,y1,xx,yy: Integer;

    Procedure AFK;
    Begin
     GetMousePos(xx,yy)
     MMouse(xx,yy,2+Random(12),2+Random(12))
    End;

    Procedure CheckStatus;
    Begin
     Wait(1000+Random(500))
     GetMousePos(x,y)
     Status('M1: ' + IntToStr(x) + ':' + IntToStr(y) + '')
     Wait(8000+Random(500))
     GetMousePos(x1,y1)
     Status('M2: ' + IntToStr(x1) + ':' + IntToStr(y1) + '')
     Writeln('Mouse started at ' + IntToStr(x) + ':' + IntToStr(y) + ' to ' + IntToStr(x1) + ':' + IntToStr(y1) + '')
     If x=x1 then
      Begin
       AFK;
      End;
    End;

    begin
     Repeat
      CheckStatus;
      Wait(2000+Random(2000))
     Until(False)
    end.

  2. #2
    Join Date
    Jun 2008
    Posts
    62
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well the (randoms) obviously mean it will go at anytime between them, which makes it very hard to detect, i say its not detectable.

  3. #3
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    It is using SSI2.scar, Which is old. So I would think it is detectable.

  4. #4
    Join Date
    Apr 2007
    Location
    Bridgeport
    Posts
    113
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmm well you think someone could convert it to SRL... because I'm getting a lot of errors from SSI2

  5. #5
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    replace {.include ssi2.txt} with {.include srl/srl.scar} and add SetupSRL; to your mainloop to convert it.
    I made a new script, check it out!.

  6. #6
    Join Date
    Feb 2007
    Location
    @ SRL
    Posts
    402
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by NightBlade View Post
    Hey I found this great old script that would barely move your mouse to make you stay logged in.. very useful for fishing or wcing...

    I'm just wondering if I can use it without ban. Since it's old I'm wondering if it might be easily detected

    Here's the script.. it would be great if someone could convert it to SRL so it's the exact same thing
    CONVERTED TO SRL:
    SCAR Code:
    program Online; //CONVERTED TO SRL. TurboBk.
    {.include SRL/SRL.scar}
    var
    x1, y1, xx, yy,
    x, y: Integer;

    Procedure AFK;
    Begin
      GetMousePos(xx, yy)
      MMouse(xx, yy, 2 + Random(500), 2 + Random(500));
    End;

    Procedure CheckStatus;
    Begin
      Wait(1000 + Random(1000));
      GetMousePos(x, y);
      Status('M1: ' + IntToStr(x) + ':' + IntToStr(y));
      Wait(8000 + Random(8000));
      GetMousePos(x1, y1);
      Status('M2: ' + IntToStr(x1) + ':' + IntToStr(y1));
      WriteLn('Mouse started at ' + IntToStr(x) + ':' + IntToStr(y) + ' to ' + IntToStr(x1) + ':' + IntToStr(y1));
      If x = x1 Then
      Begin
       AFK;
      End;
    End;

    Begin
      SetupSRL;
      ClearDebug;
      Repeat
        CheckStatus;
        Wait(2000+Random(2000));
      Until(False);
    End.
    The game has an unexplainable attraction that convinces the player they are having fun, despite the fact that all they are doing is performing repetitive tasks to increase their statistics. "The game is actually a graphical nightmare and its gameplay is simple at best. Yet something, perhaps by subliminal means, forces the player - against his will - to play the game, and to believe that they are having fun".

  7. #7
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by turbobk View Post
    CONVERTED TO SRL:
    SCAR Code:
    program Online; //CONVERTED TO SRL. TurboBk.
    {.include SRL/SRL.scar}
    var
    x1, y1, xx, yy,
    x, y: Integer;

    Procedure AFK;
    Begin
      GetMousePos(xx, yy)
      MMouse(xx, yy, 2 + Random(500), 2 + Random(500));
    End;

    Procedure CheckStatus;
    Begin
      Wait(1000 + Random(1000));
      GetMousePos(x, y);
      Status('M1: ' + IntToStr(x) + ':' + IntToStr(y));
      Wait(8000 + Random(8000));
      GetMousePos(x1, y1);
      Status('M2: ' + IntToStr(x1) + ':' + IntToStr(y1));
      WriteLn('Mouse started at ' + IntToStr(x) + ':' + IntToStr(y) + ' to ' + IntToStr(x1) + ':' + IntToStr(y1));
      If x = x1 Then
      Begin
       AFK;
      End;
    End;

    Begin
      SetupSRL;
      ClearDebug;
      Repeat
        CheckStatus;
        Wait(2000+Random(2000));
      Until(False);
    End.
    That will move the mouse to random places. So it will not keep you logged in.
    SCAR Code:
    program New;
    {.include srl/srl.scar}
    begin
      Repeat
        If random(100)=1 then Gametab(random(14)+1);
      until Not loggedin
    end.
    Plays with the tabs every now and then, maybe have to change the number in random to lower so it does it more often

  8. #8
    Join Date
    May 2008
    Location
    Australia
    Posts
    54
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you could make this a procedure for a fishing/wc script if u wanted to. it wouldnt be too bad if you updated a few commands.

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

    Default

    Quote Originally Posted by Mylesmadness View Post
    That will move the mouse to random places. So it will not keep you logged in.
    SCAR Code:
    program New;
    {.include srl/srl.scar}
    begin
      Repeat
        If random(100)=1 then Gametab(random(14)+1);
      until Not loggedin
    end.
    Plays with the tabs every now and then, maybe have to change the number in random to lower so it does it more often
    I thought moving the mouse does keep you logged in?

    Also, your script will keep pressing tabs very fast, since there is no wait. (No SetupSRL, so the mouse will move very slowly too).

  10. #10
    Join Date
    Feb 2007
    Location
    @ SRL
    Posts
    402
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Mylesmadness View Post
    That will move the mouse to random places. So it will not keep you logged in.
    Moving the mouse does keep you logged in
    The game has an unexplainable attraction that convinces the player they are having fun, despite the fact that all they are doing is performing repetitive tasks to increase their statistics. "The game is actually a graphical nightmare and its gameplay is simple at best. Yet something, perhaps by subliminal means, forces the player - against his will - to play the game, and to believe that they are having fun".

  11. #11
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by turbobk View Post
    Moving the mouse does keep you logged in
    Since when?

  12. #12
    Join Date
    Apr 2007
    Location
    Bridgeport
    Posts
    113
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Since as long as I can remember, for years I think. Try it, just sit there in RS and move the mouse a little every once and a while and you will not logout.

    Anyways, thanks for the help guys.

  13. #13
    Join Date
    Feb 2007
    Location
    @ SRL
    Posts
    402
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Mylesmadness View Post
    Since when?
    Since forever..

    Obviously Jagex can detect when and how we move the mouse, or there would be no need for uber leet mouse moving functions..
    The game has an unexplainable attraction that convinces the player they are having fun, despite the fact that all they are doing is performing repetitive tasks to increase their statistics. "The game is actually a graphical nightmare and its gameplay is simple at best. Yet something, perhaps by subliminal means, forces the player - against his will - to play the game, and to believe that they are having fun".

  14. #14
    Join Date
    Aug 2009
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i dont beleive this has S.M.A.R.T.

  15. #15
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by pwner005 View Post
    i dont beleive this has S.M.A.R.T.
    Nope, it doesnt. But I believe you are spamming to get your post count up
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  16. #16
    Join Date
    Jun 2009
    Location
    New Jersey
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by noidea View Post
    Nope, it doesnt. But I believe you are spamming to get your post count up
    I agree, all of his posts were made today, most spam.


    Quote Originally Posted by turbobk View Post
    Since forever..

    Obviously Jagex can detect when and how we move the mouse, or there would be no need for uber leet mouse moving functions..
    Just because Jagex is detecting the mouse movement, doesn't mean that it would keep you logged in.

    I do know for a fact that typing in the bar at the bottom and not pressing enter does not keep you logged in.
    Take a look at a new OpenDepositBox here.

  17. #17
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    07-06-2008, 10:42 PM
    Gravedigz0r
    Closed.
    I made a new script, check it out!.

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
  •