Trouble incoming!
Function name: getSkillXP
Located: Skills.simba
Error: The mouse function brakeMMouse random parameters goes out of bounds pretty radically.
Fix: Change it into a mousebox?
Function name: waitFindColors
Located: Timing.simba
Error: You missed something tiny
Fix:
Simba Code:
function waitFindColors(var TPA: TPointArray; Color, Tol: Integer; Area: TBox; MaxTime: Integer): Boolean;
var
T: Timer;
begin
Result := False;
T.start();
while T.timeElapsed < MaxTime do
begin
if createCol(Color,Tol).findAllIn(Area, TPA) then
Exit(True);
Wait(10 + Random(6));
end;
end;
waitFindColors needs to be fixed in order for getSkillXP to work!