Results 1 to 13 of 13

Thread: [Req] Simple Anti Logout

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

    Default [Req] Simple Anti Logout

    Hey

    I was wondering if someone could make me a simple Anti Logout script for RS, simple so I don't.... Log out.

    Anyway it's mainly going to be used for fishing, or wcing. All I would want is for the mouse to move very slightly to any direction, just enough so I don't log.

    I would really appreciate it, if it doesn't take too long.

    Thanks.

  2. #2
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    SCAR Code:
    program AntiLogout;
    {.include SRL\SRL.scar}

    // Moves the mouse randomly until you hit F1

    begin
      SetupSRL;
      repeat
        SleepAndMoveMouse(700 + random(2000));  //The numbers are milliseconds
      until(IsFKeyDown(1));    // Change the number to whatever FKey you want
    end.

    Enjoy
    METAL HEAD FOR LIFE!!!

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

    Default

    Wow, dude thanks so much

    +Rep

    EDIT: Hmm, only problem is, the mouse moves too much and too often.

    I was thinking more like barely moving, just a slight move in the mouse, not all over the screen. And only moving like before RS logs you out... However long that is I don't know...

    I used to have a script like it ages ago. It was on mopar's site... But now it's no where to be found. ;\

  4. #4
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by NightBlade View Post
    Wow, dude thanks so much

    +Rep
    hehe np, let me know if u need it tweaked better for whatever you happen to be doing
    METAL HEAD FOR LIFE!!!

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

    Default

    Hmm, only problem is, the mouse moves too much and too often.

    I was thinking more like barely moving, just a slight move in the mouse, not all over the screen. And only moving like before RS logs you out... However long that is I don't know...

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

    Default

    SCAR Code:
    program AntiLogout;  //Based off the above.
    {.include SRL\SRL.scar}
     
    var x, y:integer;
    begin
      SetupSRL;
      repeat
        GetMousePos(x,y);
        Mouse(x + Random(30),y + Random(30),0,0);
        Wait(Random(20000));
      until(IsFKeyDown(1));    // Change the number to whatever FKey you want
    end.
    Try it out.


    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
    Apr 2007
    Location
    Bridgeport
    Posts
    113
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Line 9: [Error] (12312:41): Invalid number of parameters in script

  8. #8
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by NightBlade View Post
    Line 9: [Error] (12312:41): Invalid number of parameters in script
    Add an extra M to Mouse so its MMouse
    METAL HEAD FOR LIFE!!!

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

    Default

    Oops, change Mouse to MMouse.


    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!

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

    Default

    Thanks guys, works great

    Much appreciated!

  11. #11
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    SCAR Code:
    program AntiLogout;  //Based off the above.
    {.include SRL\SRL.scar}
     
    var x, y:integer;
    begin
      SetupSRL;
      repeat
        Case random(2) of
        1: GetMousePos(x,y);
            MMouse(x + Random(30),y + Random(30),0,0);
        2: RandomRClick;
        end;
    Wait(Random(20000));
      until(IsFKeyDown(1));    // Change the number to whatever FKey you want
    end.

    Or add eventual RandomRClick?
    Ce ne sont que des gueux


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

    Default

    Don't you have to click/type something otherwise it will log you out though? Maybe an anti-ban that involves checking stats etc. would be a bit better.
    By reading this signature you agree that mixster is superior to you in each and every way except the bad ways but including the really bad ways.

  13. #13
    Join Date
    Mar 2007
    Posts
    3,681
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Just make it hold down your left key

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. anti logout
    By roboroofer1 in forum RS3 Outdated / Broken Scripts
    Replies: 8
    Last Post: 08-06-2008, 08:57 PM
  2. Anti-logout - afk training
    By Swift in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 11-24-2007, 09:55 PM
  3. A simple anti-logout
    By Floor66 in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 10-20-2007, 11:31 AM
  4. [srl][rs2] Anti-logout
    By apx900 in forum RS3 Outdated / Broken Scripts
    Replies: 6
    Last Post: 05-22-2007, 12:53 AM
  5. anti logout
    By macromacro123 in forum OSR Help
    Replies: 1
    Last Post: 03-09-2007, 09:36 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
  •