^ navbar update broke SRL login function. Heres my custom login procedure if you want it.
Simba Code:
Procedure Login; //SETUP FINISHED
begin
Writeln('Waiting for client to load');
wait(randomrange(15000, 25000));
Writeln('Client loaded, lets log in');
Mouse(378, 300, 3, 3, 1);
wait(randomrange(100, 200));
Mouse(362, 212, 3, 3, 1);
Typesend(Username);
wait(randomrange(200, 400));
Typesend(password);
wait(randomrange(3000, 4000));
Mouse(381, 513, 10, 3, 1);
wait(randomrange(8000, 12000));
end;
all you have to do is call that in your main loop, and add username and password to the constants.