Hey, i think that at the moment SRL ClickToContinue is not working, so i tried make a new one, and here is what i got :)
~HomePHP Code:function ClickContinueEx(Click, Wait: Boolean): Boolean;
var tx, ty :Integer;
begin
if not AreTalking then Exit;
Result := FindColor(tx, ty, 16711680, 171, 432, 468, 465);
if (Result and Click) then begin
Mouse(tx,ty, 180, 2, True);
MouseBox(11, 350, 504, 416, 3);
if Wait then ChatWait;
end;
end;

