
Originally Posted by
Rambozin
I editted the coords off the buttons, and it works now

But now I get this:
But I still have 14k points + left =/
Also, can you answer my question about the 16K-max?

It will have continued enchanting. It enchants past the 16k max, because some people like to do it that way.
Replace your choose random world procedure with this:
SCAR Code:
Function RsScreen : Boolean;
begin
Result := SimilarColors(GetColor(267, 140),2869963,10);
end;
procedure ChooseRandomWorld;
begin
Status('Choosing a random world');
repeat
begin
x := 440+ random(160);
y := 40+random(440);
Mouse(x,y,0,0,True);
wait(100);
end;
until RsScreen;
end;