When ever a human is mining or doing anything else, they usually hover the object, wait a little bit or click while the mouse is scrolling. This procedure waits like a human which is usally between 50-250 ms. But sometimes the person gets tired or just waits a little longer.
So here it is:
Simba Code:
procedure WaitHuman;
begin
case random(60) of
1..40: Wait(RandomRange(50, 250));
40..52: Wait(RandomRange(50, 350));
52..56: Wait(RandomRange(200, 600));
56..60: Wait(RandomRange(400, 900));
end;
end;
Nothing special just adds a good amount of randomness to a script