Kinda pointless to use multiplayer if you are doing single player runs...
Mulitplayer is exactly what it sounds like
So when there is only one left it really cant switch to the next person. You dont want your one char running for several hours and getting banned do you?
If you want to run singleplayer then I would suggest putting in sleep timers for atleast one hour between each login.
Here is an improved version of your mainloop:
SCAR Code:
begin
Signature;
SetupSRL;
DeclarePlayers;
if LoggedIn then Logout;
LoginPlayer;
repeat
if(not(loggedIn))then
NextPlayer(False);
repeat
MineRock;
FindRandoms;
AntiBan;
until (InvFull) or (Tolerance=50)
DropOre;
ProgressReport;
NextPlayer(True);
until(False);
end.
Hope that helps ya a bit
Good luck!