So, now my script looks like this, but this is something wrong with it. It complies fine but i get a runtime error whenever i try to test it out.
SCAR Code:
program scarlogin;
{.include SRL/SRL.scar}
procedure Stay;
begin
Wait(300+random(200));
end;
const
Username= 'login'; //type in your username here.
Password= 'password'; //type in your password here.
begin
Mouse(450,291,0,0,true);
stay;
Mouse(310,261,0,0,true);
stay;
typesend(Username);
stay;
Mouse(300, 276,0,0,True);
typesend(password);
stay;
Mouse(296,320,0,0,True);
end.
And thank you all for the quick helpful responses.