MouseBoxDTM is it possible? Please Red @HighScripters
Hey Guys,
I'm trying to code a mining script for a RSPS and I would like to know, if I set a DTM that works with all the rocks that I need in an area... Is there a way I can check by using FindDTM and MouseBox to see when the DTM is no longer present in a given area and move to the other "Full Rock"
Example:
Simba Code:
If FindDTM(Rock, X, Y, MSX1, MSY1, MSX2, MSY2) then
Begin
MMouse(X, Y, 0, 0);
ClickMouse2(True);
repeat
wait(25);
until(not FindDTM(Rock, X, Y, MSX1, MSY1, MSX2, MSY2)); ///<---- But in a give area that was clicked.
end;