
Originally Posted by
xblazenx
is anyone else having the same problem where it keeps clicking on the soul esswraith?
The color of the siphoning "puffs" must have changed. All you need to do is get the color of the "puff" using the Auto Color Aid and insert it below:
Simba Code:
Function IsAttack: Boolean;
Var
CTS: Integer;
TPA: TPointArray;
Begin
CTS := GetColorToleranceSpeed;
Begin
ColorToleranceSpeed(2);
SetColorSpeed2Modifiers(0.20, 0.82);
FindColorsSpiralTolerance(x, y, TPA, 13812937, 250, 135, 275, 170, 12);
ColorToleranceSpeed(CTS);
result := (Length(TPA) > 0);
If result Then
Exit;
End;
End;