PDA

View Full Version : Login.SIMBA fix.



webbydee
07-03-2015, 06:22 AM
Noticed the login.simba was not loging out so i just changed the co-ordinates for the logout button in the login.simba as it is now.

simply replace the function Logout: Boolean; with this code and it logs out no worries.



function Logout: Boolean;
var
t: integer;
begin
result := not loggedin;
if result then
exit;
if not gametab(tab_logout) then
exit;

mousebox(576,406,707,431,mouse_left);
marktime(t);
repeat
wait(RandomRange(400,500));
if timefrommark(t)>5000 then
exit;
until not loggedin;
result := true;
end;

lcbbln
08-25-2017, 04:11 AM
good

Turpinator
08-25-2017, 07:29 PM
This is in aerolib?