Try printing ( with log) the command you are trying to execute, run it in a seperate command line to see if it's working properly.
since it's related to input I am suspecting the problem is with the youtube url you are providing
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!