The problem is with the LoginPlayer procedure (obviously) in the Login.scar include.
SCAR Code:
//Click 'Log In' on main menu
while (GetColor(343, 174) <> 7750) do
begin
MouseBox(360, 180, 400, 185, 1);
Wait(100 + Random(100));
end;
The GetColor(343, 174) needs to be changed to GetColor(343, 175)
SCAR Code:
//Click 'Log In' on main menu
while (GetColor(343, 175) <> 7750) do
begin
MouseBox(360, 180, 400, 185, 1);
Wait(100 + Random(100));
end;
I have atached the fixed file, to save you some time.
Just paste the Login.scar file into the directory...
C:\Program Files\SCAR 3.15\Includes\SRL\SRL\core
Allow the old one to be overwritten.
Hope that helps.