PDA

View Full Version : AutoLogin Script



AndyxD
07-12-2007, 12:17 PM
Hey All..

I just leaned how to code in SCAR so I've just made this..
Because I'm new, ill post only the script, so you wont go like, "He might post a virus".. Blah >.<


program AutoLogIn;

var
x,y: Integer;

procedure ClickClient;
begin
ClickMouse(101,13,true);
Wait(300+random(150));
end;

procedure ClickLogIn;
begin
ClickMouse(451,288,true);
Wait(200+random(200));
end;

procedure AccountName;
begin
SendKeys('ACCOUNT NAME'); //Change it to you're account name
Wait(200+random(200));
end;

procedure ClickPassword;
begin
ClickMouse(357,275,true);
Wait(200+random(200));
end;

procedure AccountPass;
begin
sendKeys('ACCOUNT PASSWORD');//Change it to you're account pass
wait(200+random(200));
end;

procedure LogIn;
Begin
ClickMouse(308,320,true);
Wait(6000);
end;

procedure ContinueToGame;
Begin
ClickMouse(390,329,true);
Wait(3000+random(1700));
end;

begin
ClickClient;
ClickLogIn;
AccountName;
ClickPassword;
AccountPass;
LogIn;
ContinueToGame;
end.

yanix
07-13-2007, 08:22 PM
nice for a first script

yanix
07-13-2007, 08:24 PM
keep up the work

tjsams
07-13-2007, 08:56 PM
Yea it is good for a first script I will watch for more scripts by you :P

Diabloizzle
08-01-2007, 07:26 PM
This is a good way to test and demonstrate your knowledge of the basics, but srl already has an auto login and it is much less detectable. I suggest learning some of the srl functions, commands, and procedures. Instead of clickmouse-mouse, sendkeys-typesend....and other things.

drnewheart
08-08-2007, 05:03 AM
keep up the work
Post 1.....


nice for a first script
Post 2..... Dont Double Post. Thats Against The Rules.


This is a good way to test and demonstrate your knowledge of the basics, but srl already has an auto login and it is much less detectable. I suggest learning some of the srl functions, commands, and procedures. Instead of clickmouse-mouse, sendkeys-typesend....and other things.

Agreed This Is A Good way to tell you know the basics but now you should learn some SRL basics. If you ever need help just pm me and I will be Glad to help you.