Results 1 to 8 of 8

Thread: Full RuneScape Auto Log-In

  1. #1
    Join Date
    Apr 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Full RuneScape Auto Log-In

    I'd like to give some credit to the Beginner-Script-Tut from WhoCares(some-numbers-I-can't-remember).

    This script is terribly simple but that doesn't prevent it from taking a billion years to make for a newbie scripter.

    I'd like to dedicate this stupid script to the next step of laziness.

    Enjoy! :-)

    (If it works. PS: Leave a message about how it worked).
    (PS again: This is non SRL BTW.)

  2. #2
    Join Date
    Apr 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just remembered, the script won't really work when you can't download it... So here it is

  3. #3
    Join Date
    Feb 2007
    Location
    Alberta, Canada
    Posts
    4,615
    Mentioned
    50 Post(s)
    Quoted
    429 Post(s)

    Default

    ok, a few things..
    SCAR Code:
    SendKeys(Pass);
    Wont press enter. Did you mean for it not to? I know i press enter after typing my pass.

    Also, use Mouse and MMouse instead of ClickMouse and MoveMouseSmooth, these are SRL commands, so you will need to add
    SCAR Code:
    {.include SRL/SRL.scar}
    To right under
    SCAR Code:
    program FullRSAutologin;
    So that it looks like this
    SCAR Code:
    program FullRSAutologin;
    {.include SRL/SRL.scar}
    And then put SetupSRL; to your main loop, if you need any help with the main loop thing, then ask me in a PM.
    instead of
    SCAR Code:
    SendKeys
    Use
    SCAR Code:
    TypeSend(' Your Message Here');
    This is SRL, and cant be detected by Jagex...

    I have included a finished SRL Version, but i will remove if you say so...

    SCAR Code:
    {                     ---> McBronzeLongsword's <---

                              Auto RuneScape Login!
                  My humble - but working (for me)- first script!

    (This was entirely scripted on my computer, so sorry for any
    inappropriate waiting times. Please have patience in it, since
    it - regardless of the waiting times - WILL log you in, mostly)

    It sorts after lowest population so it will most likely choose a
    Members World. Only in Members Worlds will my unprofessional CharLogIn
    work.

    Setup:
    1.) Place RuneScape Windows Client Icon in vision range when SCAR is
    opened.
    2.) Insert your name and password in the lines 30 and 31.
    3.) Scroll down and change the coordinates in line  53, 55 & 59 to
    the ones you want.
    4.) Comment on this script, please :-)
    ________________________________________________________________________________                                                                               }


    program FullRSAutologin;
    {.include SRL/SRL.scar}

    const
    RSColor= 3368601;
    Name= '';
    Pass= '';

    begin
    SetupSRL;
    if(FindColor(x,y,RSColor,0,0,1000,750))then
     begin
      MMouse(x,y,0,0);
      Wait(100);
      Mouse(x,y,0,0,true);
      Mouse(x,y,0,0,true);
      Wait(1000);
      MMouse(564, 391,0,0);
      Wait(50);
      Mouse(564, 391,0,0,true);
      Wait(5000);
      MMouse(862, 690,0,0);
      Wait(75);
      Mouse(862, 69,0,0,true);
      Wait(600);
      MMouse(762, 319,0,0);
      Wait(100);
      Mouse(762, 319,0,0,true);
      Wait(2500);
      MMouse(676, 312,0,0);//(343, 311) for High Detail
      Wait(150);
      Mouse(676, 312,0,0,true);//343, 311) for High Detail
      Wait(2500);
      MMouse(441, 412,0,0);
      Wait(50);
      Mouse(441, 412,0,0,true);//Chooses to sort them after lowest population.
      Wait(2000);
      MMouse(342, 439,0,0);
      Wait(100);
      Mouse(342, 439,0,0,true);
      Wait(17000);
      MMouse(873, 535,0,0);
      Wait(200);
      Mouse(873, 535,0,0,true);
      MMouse(592, 347,0,0);
      Wait(150);
      Mouse(592, 347,0,0,true);
      Wait(100);//Delete every line below this point to manually log in
      TypeSend(Name);
      Wait(1000);
      TypeSend(Pass);
      Wait(500);
      MMouse(428, 376,0,0);
      Wait(100);
      Mouse(428, 376,0,0,true);
      Wait(5000);
      MMouse(519, 403,0,0);
      Wait(100);
      Mouse(519, 403,0,0,true);
      Cleardebug;
      Writeln('    _____________________    ')
      Writeln('--->Welcome to RuneScape!<---')
      Writeln('    ^^^^^^^^^^^^^^^^^^^^^    ')
      Writeln('                             ')
     end;
    end.

    Scripts: Edgeville Chop & Bank, GE Merchanting Aid
    Tutorials: How to Dominate the Grand Exchange

    Quote Originally Posted by YoHoJo View Post
    I like hentai.

  4. #4
    Join Date
    Apr 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for learning me how to SRL things =)

    Now I know that, but I didn't include SRL because I don't think Jagex tracks Autoers when they aren't logged in, and the second reason is, that I simply didn't know how.

    It's fine with me that you post an SRL Version - Just don't take my credit :P

    Thanks.

  5. #5
    Join Date
    Apr 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    What is MMouse and Mouse anyway?


    But did it work for you?

    It did for me.

  6. #6
    Join Date
    Mar 2007
    Location
    Under a rock
    Posts
    813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    MMouse(x, y, 2, 2) moves the mouse(but not click) to the x y coords you put in or the color you told it to find. The 2, 2 are randomness so it will now click in a 2 by 2 pixel box instead of the exact area (less detectable in game).

    Mouse(x, y, 2, 2, true) will move the mouse the same way as MMouse, it has the same randomness thing, but you can put true or false. true=left click and false=right click.

  7. #7
    Join Date
    Jan 2007
    Location
    Skaville, Jamaica
    Posts
    1,117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Personally, I'm against Auto-Logins, when you could just include SRL at the top and add in

    SCAR Code:
    LoginPlayer;

    And I would add more wait times. Even if it's a little longer than your computer would want, at least it works for everybody.

    Also, what Rune Hacker said above, is what I'd like to finally add.

  8. #8
    Join Date
    Mar 2007
    Location
    Under a rock
    Posts
    813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Its not about what the script does in this section, its about them learning how to script so we can tell them what to improve on.

    And IEatJ00erBaybees, what he made goes from the mai nmenu into a world, loginplayer; only logs in the player after youve selected a world.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Your Full Guide to Preparing to Auto [SCAR, SRL, SVN, HowTo Auto]
    By Runescapian321 in forum Outdated Tutorials
    Replies: 71
    Last Post: 10-11-2008, 03:46 AM
  2. F2P? Want True Runescape Full Screen?
    By deathbyvirus in forum RuneScape News and General
    Replies: 17
    Last Post: 08-09-2008, 07:20 PM
  3. runescape dropped full rune(t)!
    By supermoose in forum News and General
    Replies: 14
    Last Post: 03-30-2008, 05:00 AM
  4. Full Runescape World's Server Url!!!!!!!!!!
    By Main in forum Bot Information and Spottings
    Replies: 0
    Last Post: 01-07-2008, 10:25 AM

Posting Permissions

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