SCAR Code:
begin
ScriptSetup;
NEWLINE:='';
If(not(LoggedIn)) then
LoginPlayer;
repeat
repeat
Randoms;
AntiBan;
FindTree;
until(invfull);
DropAll;
Until Loads >= Players[CurrentPlayer].Integer1
if Loads >= Players[CurrentPlayer].Integer1 then
Logout;
NextPlayer(True);
end.
If you really wanna use multi-player then you would have a another repeat and until. for example.
SCAR Code:
begin
ScriptSetup;
NEWLINE:='';
If(not(LoggedIn)) then
LoginPlayer;
repeat
Repeat//another repeat for the extra until.
repeat
Randoms;
AntiBan;
FindTree;
until(invfull);
DropAll;
Until Loads >= Players[CurrentPlayer].Integer1
if Loads >= Players[CurrentPlayer].Integer1 then
//Logout; NextPlayer already logs out for you.
NextPlayer(True);
Until False
end.
Some autoers do not have 40 atk to wield rune axes but have the wc lvl to use them. In your dropping procedure you have.
SCAR Code:
procedure Drop;
begin
DropAll;
end;
DropAll; will drop everything in the inventory including the Axe.
You also dont have ent finding. I believe that should be right.