Regarding AntiBan behaviours:
I was previously implementing my own method to run on chance and perform certain actions by directly accessing those API calls. Mainly because the script is performing a simple banking skill that only needs a few behaviors to mimic humans (such as moving mouse, checking skills etc).
e.g. mouse.move(x, y)
tabs.skills.open
Is this necessary / recommended or does osbot 2 API contain some predetermined anti bans you can simply call and not worry about any further?
also does anyone have any tips on making these behaviors occur at a more inconspicuous rate, i'm currently calling a :
if (random(0,1000) == x)
{
antiBan();
}
But the entire program loop seems to be completing very fast and the condition is satisfied roughly every 5 seconds. Any tips?