JDownloader Community - Appwork GmbH
 

Reply
 
Thread Tools Display Modes
  #41  
Old 10.07.2021, 10:28
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,545
Default

Quote:
Originally Posted by syphondog3 View Post
Any guidance or pointing me to the thread that shows how to implement it would be great!
Install the Event Scripter extension (Settings > Event Scripter) and add the script to it.
Reply With Quote
  #42  
Old 14.07.2021, 13:31
bembe16 bembe16 is offline
Baby Loader
 
Join Date: May 2021
Posts: 5
Default

Unfortunately,
for me this script doesn't work. I tried it for couple of days, but I still have to occasionally stop slow download and start it again to gain full speed.
Reply With Quote
  #43  
Old 14.07.2021, 13:32
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,518
Default

@bembe16: what exactly doesn't work with this script? it does exactly the same, check for speed and then stop/start the download again
__________________
JD-Dev & Server-Admin
Reply With Quote
  #44  
Old 14.07.2021, 22:28
bembe16 bembe16 is offline
Baby Loader
 
Join Date: May 2021
Posts: 5
Default

@Jiaz
I thought script fixes someting that causes slow download with RG.
I still have to stop the slow download and click start download to get the full speed. When I have many files in download queue, I don't always check if the speed suddenly dropped to few kilobytes/s.
Reply With Quote
  #45  
Old 15.07.2021, 11:44
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,518
Default

@bembe16: Sounds like you did something wrong with setup of the script. With the script you don't have to check speed or do anything by yourself. The script checks for slow speed and stop/start the downloads automatically.
Sure it's setup with correct event type interval?
__________________
JD-Dev & Server-Admin
Reply With Quote
  #46  
Old 21.07.2021, 12:07
bembe16 bembe16 is offline
Baby Loader
 
Join Date: May 2021
Posts: 5
Default

@Jiaz
Yes, you are right, I didn't setup script correctly and set "interval" for trigger.
I haven't spotted speed problems so far.
Thank you!
Reply With Quote
  #47  
Old 21.07.2021, 12:12
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,518
Default

@bembe16: glad you got it working and thanks for the feedback!
__________________
JD-Dev & Server-Admin
Reply With Quote
  #48  
Old 12.02.2023, 23:07
Kickstart Kickstart is offline
Modem User
 
Join Date: Apr 2020
Posts: 2
Default

Quote:
Originally Posted by mgpai View Post
Eventscripter script:
Code:
/*
    Automatically stop/restart slow downloads
    Trigger : Interval
*/

getRunningDownloadLinks().forEach(function(link) {
    if (
        link.downloadHost == "rapidgator.net" &&
        link.downloadDuration > 30000 &&
        link.speed < 128 * 1024
    ) {
        link.abort();
    }
});
Can you edit that skript to start the next file, please?
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT +2. The time now is 10:33.
Provided By AppWork GmbH | Privacy | Imprint
Parts of the Design are used from Kirsch designed by Andrew & Austin
Powered by vBulletin® Version 3.8.10 Beta 1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.