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.
Function Variable
-
Do functions themselves carry referenceable names.
Is there a way to make each function name be a variable without setting variable each time? -
@hellomembersha said in Function Variable:
Do functions themselves carry referenceable names.
Is there a way to make each function name be a variable without setting variable each time?"Execute code"
[[NEW_VARIABLE]] = function(){log("hello")};Use [[NEW_VARIABLE]](), type
expression -
Thank you fox