i have a procedure in my program
The problem only occours now and again, when a bone is found in the inventory and its is clicked the mouse moves ever so slightly after the bone has been buried <<thats the problem<<. This doesnt happen after every bone, because due to the timer the mouse moves before the mouse flicker can happen. Is this normal?? I tried removing the random parameters from the mouse functions but the problem still occured.Code:procedure BuryBones; begin while(FindDTM(Bone, x, y,560, 210, 725, 450 ))Do begin // MoveMouseSmooth(x,y); Wait(1000+random(500)); mmouse(x,y,3,3); //Wait(100+random(500)); Mouse(x,y,3,3,True); Buried:=Buried + 1; xp:=xp + 4.5; end; writeln('no bones found'); end;
This would possibly look suspicious to people monitering so i'd like to get rid of the movement even though it is only a small movement...
Any input greatly accepted!


Reply With Quote












. I reccomend looking through srl and looking at the inv dtm functions or bitmap functions. Basically the problem is the waits. But we dont want to wait to long or to little. So basically what you do is just go along the inv slots searching for the dtm. 