The only thing we really need here regarding this topic is bot option extended. There is maximum random wait between queues. The only thing that is missing is minimum time between queues. We need to be able to set minimum timer, in order to make sure adds will run out before bot queues again. Please add minimum wait time between queues, it would be such a must option for people that are using PlayVig as well. Smart bot has that feature, and it isn't hard to code it it's 5 to 10 lines of code please give us that functionality, please.
EDIT:
What I mean by that is add new box with this option and just check:
Quote:integer minWaitTime;
if (minWaitTime > 0)
{
math.rand(minWaitTime, maxWaitTime);
}
else
{
math.rand(1, maxWaitTime);
}
OFC, IDK what you program in, but convert code to whatever language you use, this is just refferencial idea.