Page 4 of 4 FirstFirst ... 234
Results 76 to 86 of 86

Thread: How to make an Auto Login Script

  1. #76
    Join Date
    Oct 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Good tut.
    I got it to work!
    Im going to use this in my first script.

  2. #77
    Join Date
    Nov 2008
    Location
    Norway, Alesund
    Posts
    924
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    thnak you for that tutorial, for noob in scar like me it should help me to learn very very full tutorial

  3. #78
    Join Date
    Oct 2008
    Posts
    0
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    tyvm man i just learning scripting and you helped out alot thanks!

  4. #79
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Wow this is still active . I might think of updating it.

  5. #80
    Join Date
    Nov 2008
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks alot, helped me alot, with help of this tutorial i made a script that even loads up firefox > runescape.com > login screen > and completely logs me in.

    much love brother

  6. #81
    Join Date
    Jul 2008
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Very nice guide, but I wish there was an easier way. Because I'm not really good at this

  7. #82
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    There is :
    SCAR Code:
    Loginplayer;

  8. #83
    Join Date
    Dec 2008
    Location
    Québec
    Posts
    419
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice man i learned alot !!

  9. #84
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    No problem, Im thimnking of updating this to work with the new RS interface.

  10. #85
    Join Date
    Feb 2009
    Location
    UK
    Posts
    89
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Extremely helpful, thank you very much.
    You helped me create my first scar script so +rep for you!

    Here is a copy encase you update your post.

    SCAR Code:
    program AutoLogin;
    {.include srl/srl.scar}

    Procedure ClickOnExitstingUserButton;
    begin
      Mouse(382,184,22,4,true);
      Wait(500+Random(1000));
      WriteLn('Clicked Existing User Button');
    end;

    Procedure TypeInUsernameAndPassword;
    begin
      TypeSend('username'); //Username here.
      Wait(750+Random(1000));
      Typesend('password'); //Password here.
      Wait(750+Random(1000));
    end;

    Procedure CompleteLogin;
    begin
      Mouse(377,271,26,11,true);
      WriteLn('Clicked Log In Button');
      WriteLn('Waiting For the Confirmation Screen!');
      Wait(5000+Random(2000));
      Mouse(383,350,282,20,true);
    end;

    begin
      SetupSRL;
      ActivateClient;
      ClickOnExitstingUserButton;
      TypeInUsernameAndPassword;
      CompleteLogin;
    end.

  11. #86
    Join Date
    Dec 2011
    Location
    Argentina
    Posts
    42
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks it helped me alot to implement that to my future scripts.

Page 4 of 4 FirstFirst ... 234

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Need help with my first script: auto-login
    By goodhomeboy in forum OSR Help
    Replies: 6
    Last Post: 05-09-2010, 09:34 PM
  2. Auto Login! First Script!
    By S T Ole N in forum First Scripts
    Replies: 7
    Last Post: 05-08-2008, 11:06 PM
  3. My first SRL script (only a auto login)
    By XcanadamanX in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 11-10-2006, 01:00 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
  •