I think trying to find the stairs or doors in Draynor is impossible. Not really but I'm finding it difficult. Everything is so similar in color. I have gotten a the door color done very well, but does anyone have a good color for the stairs?
Simba Code:
Function FindStairs(var x, y: Integer): Boolean;
Var
CTS, I: Integer;
StairTPA: TPointArray;
ATPA: Array of TPointArray;
Begin
If(Not(LoggedIn))Then Exit;
CTS := GetColorToleranceSpeed;
ColorToleranceSpeed(2);
SetColorSpeed2Modifiers(0.36, 1.43);
FindColorsSpiralTolerance(MSCX, MSCY, StairTPA, 2964543, MSX1, MSY1, MSX2, MSY2, 3);
ATPA := TPAToATPAEx(StairTPA, 10, 10);
For I := 0 To High(ATPA) Do
Begin
MiddleTPAEx(ATPA[i], x, y);
MMouse(x, y, 2, 2);
If(IsUpTextMultiCustom(['imb', 'up'])) Then
Begin
Writeln('Found Stairs');
GetMousePos(x, y);
Result := True;
Break;
End;
End;
End;
Is what I'm using to find the stairs. Its finds them sometimes, but it miss-clicks a lot.