View Single Post
  #2125  
Old 11.03.2022, 06:10
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,549
Default

Quote:
Originally Posted by assoemitro View Post
... let me know if this is feasible.
Code:
/*
    Stop dwonloads during extraction
    Trigger: Package finished
*/    

var isExtracting = function() {
    return callAPI("extraction", "getQueue").length > 0;
}

if (isDownloadControllerRunning() && isExtracting()) {
    stopDownloads();

    while (isExtracting()) {
        sleep(5000);
    }

    startDownloads();
}
Reply With Quote