
Originally Posted by
footballjds
can you describe how you search/filter the colors? I'm assuming you use TPA's. How many colors must you find? When i reported the bug it was hovering over a player's cape...

ACA relog/reload/pick till cant find any difference, CTS2 TPA - ATPA Sort largest first, checkuptext, click

Originally Posted by
footballjds
EDIT2: I think you flow of logic is off with inPin
Failsafe catches pinscreen so its not checked for every loop, I feel if something is going to happen 1/3000 loops, a check every loop is a waste
If you want it every check, change BankAllButton; to:
Simba Code:
Function BankAllButton: Boolean;
Var
TCount,X,Y: Integer;
Begin
MarkTime(TCount);
Repeat Begin
Wait(RandomRange(100, 200));
If (PinScreen) Then
InPin(Players[0].Pin);
End; Until (FindColorTolerance(X, Y, 4512575, 356, 312, 362, 318, 25)) Or (TimeFromMark(TCount)>5000)
If (TimeFromMark(TCount)>5000) Then
Result:=False
Else
Begin
LeftClickSpot(354, 348, 384, 368);
Result:=True;
Exit;
End;
Result:=False;
End;