Yes, i also faced this problem, what i did was if file size was > 100kb then i delete cookies and bot will check if cookies are not present then it will call login function and new cookies file will be saved which will be less than 100 kb.
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!