If you have multiple browser threads then you can add a date column in database for each account. When some action is finished then you can add 30 minutes to the date now and add it to the database of that particular account. Then add a check condition in the beginning of the thread which checks if the current date is less or greater than the database date. If it is greater that means there is still time left and then close that thread without opening browser.
How to run THREAD for EXACTLY 500 times?
-
So my question is how to run my THREAD exactly 500 times?
When I do 500 success and 250 FAILS
Say my thread got 200 fails, the thread will still run total 700 times, until it reaches 500 success first or 250 fails first and I got only 500 lines of DATA in .txt
resulting in BAS reading my first 200 DATA again.
how to make my thread run exactly 500 times?
-
put a fail action on the end with message "script succeeded" instead of nothing or instead of success action
then set fails to 500.
it will run only 500 times.
-
@yourfriendkarol said in How to run THREAD for EXACTLY 500 times?:
only
ohh that's possible, nice, thank you!