Simba Code:
Procedure ClickPieDish;
var
Dish, x, y: Integer;
begin
Dish := DTMFromString('m6wAAAHic42ZgYHBhZGAIAOIgIPYDYjcgtoBieyAOBGIfILYG4udA/BBKvwfij0D8BogfQ9mvgfgeVC7LXw9oOhNRmIsBP+CCYhEgZiQBIwEAuggOYg==');
If FindDTM(Dish, x, y, MSX1, MSY1, MSX2, MSY2) Then
begin
WriteLn('Found pie dish.');
MMouse(x, y, 7, 7);
If (IsUpTextMultiCustom(['ie', 'dish'])) Then
begin
WriteLn('Clicking pie dish');
GetMousePos(x, y);
Mouse(x, y, 0, 0, True);
end else
WriteLn('Did not click Pie dish.');
end;
FreeDTM(Dish);
end;
That is all i have as of now :/ I just started on it and haven't even gotten to opening up the bank and such like that.
I added 'ithdraw' to the uptext and it finds it, but not every time.