View Single Post
  #779  
Old 14.06.2019, 01:25
thecoder2012's Avatar
thecoder2012 thecoder2012 is offline
Official 9kw.eu Support
 
Join Date: Feb 2013
Location: Internet
Posts: 1,324
Default

Quote:
Originally Posted by Jiaz View Post
What are you trying to find out?
Faster reset/repeat of waiting times than e.g. retry in 15 minutes or 3 hours (uploaded test).

Quote:
Originally Posted by Jiaz View Post
temp/conditional skip reasons are only *reachable* via getStatus and ONLY when controller assigned the status to the file.
Okay and there is no chance if the controller has it not? (SO with temp/conditional skip reasons e.g. IP_BLOCKED, HOSTER_TEMPORARILY_UNAVAILABLE, TEMPORARILY_UNAVAILABLE)

Little better example with uploaded link "uploaded.net/file/xa23c1bz" (start the download, click on stop and try it again, then you have "Download limit has been reached" but NO status or eta in the Event Scripter.

JD Screenshot:


Event Scripter
Code:
var links = getAllDownloadLinks();
for (i = 0; i < links.length; i++) {
    var link = links[i];
    if (link.isEnabled()) {
        alert(link.getHost() + " 0:" + link.getEta() + " 1:" + link.getStatus() + " 2:" + link.getSkippedReason() + " 3:" + link.getFinalLinkStatus());
    }
}
Screenshot:


But I see the reason in myjd:

Can I grab it (e.g. "Download limit has been reached") with other function/callapi?
__________________
Join 9kw.eu Captcha Service now and let your JD continue downloads while you sleep.

Last edited by thecoder2012; 14.06.2019 at 13:09.
Reply With Quote