Hmm yeah, minimizing/unminimzing of the SMART screen makes runescpae flash black/white for a second or something, and may have resulted in a false positive of the login screen.
Hmm, SRL has:
SCAR Code:
{*******************************************************************************
function RSReady: Boolean;
By: ZephyrsFury
Description: Returns true if we are ready to auto (on loginscreen or logged in).
Useful for waiting until RS has fully loaded.
*******************************************************************************}
function RSReady: Boolean;
begin
Result := (LoggedIn) or (GetColor(749, 492) = 65536); //settings thingy button
end;
The function list at the top however has:
SCAR Code:
// * function AtLobbyScreen: Boolean; // * by Dgby714
But the function doesn't appear anywhere in Login.Scar
What's going on there?