I have followed that setup. Here is one of the scripts:
SCAR Code:
program AutoLoginTest;
{.include SRL/SRL.scar}
procedure DeclarePlayers;
begin
HowManyPlayers:= 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := '...';
Players[0].Pass := '..';
Players[0].Nick := '.';
Players[0].Active := True;
end;
begin
SetupSRL;
DeclarePlayers;
ActivateClient;
if (not (LoggedIn)) then
begin
WriteLn('Trying to login.');
LoginPlayer;
WriteLn('Logged in!');
end else
WriteLn('Already logged in.');
end.
I can make SCAR log me into RS using Mouse(x, y, true) and then TypeSend(...). I've also tried bitmap detection and color detection, which failed miserably. I can post those too if needed..