
Originally Posted by
Kyle Undefined
Because, you won't always move your mouse when clicking. RandomRange makes it more human like since the number of variation changes.
MMouse already does that?
Lines from MMouse below.
Simba Code:
WindMouse(cx,cy,(x + random(rx)),(y + random(ry)
Simba Code:
nx:= nx + RandomRange(rx, rx * 2);
ny:= ny + RandomRange(ry, ry * 2);
Simba Code:
nx:= (cx + (f * e)) + random(rx);
ny:= (cy + (g * e)) + random(ry);
You got random, and random ranges all over there.
Simba Code:
program new;
begin
repeat
Writeln(IntToStr(Random(5)));
Until(False)
end.
Simba Code:
3
2
0
1
2
3
2
2
2
0
4
4
2
1
1
3
1
2
0
1
4
4
4
0
3
4
4
1
2
2
1
2
3
1
4
4
1
1
3
4
1
4
4
1
4
2
4
0
0
3
4
4
3
1
0
2
0
3
4
1
0
1
1
0
0
1
2
4
4
3
0
4
2
0
2
0
3
0
1
4
1
3
3
2
1
2
2
0
3
1
3
0
1
4
3
2
1
1
2
4
3
4
1
2
3
0
2
4
0
3
4
1
3
0
2
3
1
2
3
4
1
4
3
4
3
3
0
3
4
3
3
4
0
1
4
3
0
2
It also results in 0s sometimes too!