Why this:wont work?Code:if LoggedIn then Exit;![]()
Why do you say it doesn't work?
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
Works fine here. Surely you'd want
?SCAR Code:if (Not LoggedIn) then Exit;
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
That's because you have if(LoggedIn) then Exit;. It's always going to skip it if you start logged in. Use: if(not(LoggedIn)) then LoginPlayer; or Exit; instead.
:-)
or..
SCAR Code:begin
if LoggedIn then
begin
MainLoop;
end else
LoginPlayer;
end;
But you should really do.
SCAR Code:begin
if(Not LoggedIn)then LoginPlayer;
MainLoop;
end;
Looks alot better, and easier :P
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!






or if you really want to simple it just go:
SCAR Code:begin
LoginPlayer; //LoginPlayer already has if LoggedIn the Exit
MainLoop;
end;
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
There are currently 1 users browsing this thread. (0 members and 1 guests)