Simba Code:
procedure MouseBox(x1, y1, x2, y2: Integer; ClickType: Integer);
var
fx, fy: Integer;
begin
GaussBox(fx, fy, x1, y1, x2, y2);
if InRange(ClickType, mouse_Right, mouse_move) then
Mouse(fx, fy, 0, 0, clickType)
else
srl_Warn('MouseBox', 'ClickType is NOT a valid number!', warn_AllVersions);
end;
Mousebox is not 'random', yet rather distributed around the center with a Gaussian/normal distribution.
Hmm. maybe ill make a quick poc script to show the actual distribution of clicks. im thinking... 3d graph of the box?
edit, Running now. 50k points should be enough right?
And its done. Soo as we can see here... (did 50,000 clicks)
The left is just a plot of every single 'click' using MouseBox() with a size of 500x500. You can see its all in the middle, but to what extent?
The Right is the 3d graph of frequencies of the clicks. As you can see, it is centered around the middle of the box. (ignore the scale values, they are wrong as matlab throws a nice memory error when i try and make a 50000x50000 matrix, but it still shows the correct proportionality)