SCAR Code:
program login;
{.include srl/srl.scar}
{
/////////////////////////////////
///Simple Auto Login by Fabis!///
/// v1.0 ///
/////////////////////////////////
1.Type in your Username and Password !
2.Specify RS window (with that crossfire)!
3.Start the script!
}
//////////////////////////Setup/////////////////////////////////////////
const
Username='Username'; //Put your username here!
Password='Password'; //Put your password here!
///////////////////////////Dont touch this!/////////////////////////////
begin
MouseSpeed:=15 //Speed
BenMouse:=False; //Change to True, and see what happens. :D
MMouse(random(600),random(400),6,6);
procedure loggingin;
begin
Wait(3000)
MoveMouseSmoothEx(454,288,1,3,45,20,10);
ClickMouse(454,288,true);
Wait(100);
MoveMouseSmoothEx(329,257,1,3,45,20,10);
ClickMouse(329,257,true);
Wait(100);
SendKeys(Username);
Wait(1000);
MoveMouseSmoothEx(317,275,1,3,45,20,10);
ClickMouse(317,275,true);
SendKeys(Password)
Wait(500)
MoveMouseSmoothEx(300,322,1,3,45,20,10);
ClickMouse(300,322,true);
end;
procedure presshere;
begin
Wait(5000)
MoveMouseSmoothEx(405,327,1,3,45,20,10);
ClickMouse(405,327,true);
end;
begin
loggingin;
presshere;
end.