JDownloader Community - Appwork GmbH
 

Showing results 1 to 27 of 27
Search took 0.00 seconds.
Search: Posts Made By: FBD
Forum: Eventscripter 02.06.2024, 00:42
Replies: 3,086
Views: 11,541,155
Posted By FBD
Post Script: Stop downloads during extraction

As the old script in this thread to stop downloads during extraction is not working anymore (producing a deadlock) here's a new one i put together on a user request:


/*
Stop downloads...
Forum: Eventscripter 31.01.2024, 22:40
Replies: 3,086
Views: 11,541,155
Posted By FBD
Alle Konfigurationseinstellungen können per Event...

Alle Konfigurationseinstellungen können per Event Script abgefragt und geändert werden, zum Beispiel:


alert(callAPI("config", "get", "jd.controlling.reconnect.ReconnectConfig", null,...
Forum: Eventscripter 24.01.2024, 01:50
Replies: 3,086
Views: 11,541,155
Posted By FBD
There's a script just one page before this one...

There's a script just one page before this one that can do what you need:
https://board.jdownloader.org/showpost.php?p=528231&postcount=2728
Forum: Eventscripter 31.12.2023, 14:38
Replies: 3,086
Views: 11,541,155
Posted By FBD
Yes, there would be one thread waiting your delay...

Yes, there would be one thread waiting your delay for every finished download. What you could do instead is have your script run at an interval, lets say every minute, and check the finished time of...
Forum: Eventscripter 28.11.2023, 16:31
Replies: 3,086
Views: 11,541,155
Posted By FBD
@pspzockerscene Ah i see, yeah makes sense....

@pspzockerscene
Ah i see, yeah makes sense. Well he can try with the script from mgpai then, should mostly do what he wants.
Forum: Eventscripter 28.11.2023, 15:49
Replies: 3,086
Views: 11,541,155
Posted By FBD
There are already scripts in this thread that...

There are already scripts in this thread that periodically add a url to jdownloader like this one for example:

Link_not_visible

But as...
Forum: Eventscripter 27.11.2023, 11:31
Replies: 3,086
Views: 11,541,155
Posted By FBD
If you want *both* packagesto be moved to your...

If you want *both* packagesto be moved to your "Completed" folder, you would need 2 scripts, just as you described. One that triggers on package finished, ignoring archives and another one running...
Forum: Eventscripter 27.11.2023, 09:32
Replies: 3,086
Views: 11,541,155
Posted By FBD
Your problem is that your script is triggered on ...

Your problem is that your script is triggered on "Package finished" which is called *before* archive extraction. You have to change the script to use the "Archive extraction finished" trigger and...
Forum: Eventscripter 26.11.2023, 20:58
Replies: 3,086
Views: 11,541,155
Posted By FBD
Dann hat der link einen Status der nicht im...

Dann hat der link einen Status der nicht im Script gehandled wird. Wenn ein Link bei dir den Error hat, starte mal dieses script:


var links = getAllDownloadLinks();
var report = [];

for (i =...
Forum: Eventscripter 26.11.2023, 20:18
Replies: 3,086
Views: 11,541,155
Posted By FBD
Älteres script was das erledigen sollte: ...

Älteres script was das erledigen sollte:


// Handle download errors
// Trigger Required: Interval

var links = getAllDownloadLinks();

for (i = 0; i < links.length; i++) {
var link =...
Forum: Eventscripter 26.11.2023, 19:57
Replies: 3,086
Views: 11,541,155
Posted By FBD
Warum direkt jDownloader neustarten? Den link...

Warum direkt jDownloader neustarten? Den link zurücksetzen sollte doch genügen.
Forum: Eventscripter 26.11.2023, 18:48
Replies: 3,086
Views: 11,541,155
Posted By FBD
Interval ist in Millisekunden, 300.000 sind also...

Interval ist in Millisekunden, 300.000 sind also 5 Minuten. Wenn das Script 2 Minuten lang die Downloadgeschwindigkeit testet - und dann eventuell den reconnect triggert - dann sollte das Interval...
Forum: Eventscripter 26.11.2023, 18:31
Replies: 3,086
Views: 11,541,155
Posted By FBD
Ändere for (var i = 0; i < 3; i++) { zu...

Ändere

for (var i = 0; i < 3; i++) {

zu

for (var i = 0; i < 2; i++) {


und
Forum: Eventscripter 26.11.2023, 17:51
Replies: 3,086
Views: 11,541,155
Posted By FBD
var extractedFilePaths =...

var extractedFilePaths = myArchive.getExtractedFilePaths();


The [ ] in the script help screen are just to indicate that the return value is an array, you're not supposed to have them in your...
Forum: Eventscripter 25.11.2023, 19:30
Replies: 3,086
Views: 11,541,155
Posted By FBD
Ok, at your own risc. But if you have a setup...

Ok, at your own risc. But if you have a setup with mutiple virtual machines and vpns you probably know about that.

Script checks 3 times over 3 minutes, if average download speed is 0 three times...
Forum: Eventscripter 25.11.2023, 19:01
Replies: 3,086
Views: 11,541,155
Posted By FBD
In that case it would be much more reliable if...

In that case it would be much more reliable if your script just waits a few minutes after a reconnect and checks if the connection has been established again - and if not to try again.
Forum: Eventscripter 25.11.2023, 18:31
Replies: 3,086
Views: 11,541,155
Posted By FBD
That's possible but probably not a good idea....

That's possible but probably not a good idea. Eventually all your downloads are finished or all downloads are waiting for slots - you would not want to trigger a reconnect then. The script should do...
Forum: Eventscripter 25.11.2023, 17:22
Replies: 3,086
Views: 11,541,155
Posted By FBD
You can use a slightly modified version of a...

You can use a slightly modified version of a script i posted before:


// Try another reconnect if internet connection is not back up after 180 seconds (FBD)
// Activate trigger: After a...
Forum: Eventscripter 24.11.2023, 20:26
Replies: 3,086
Views: 11,541,155
Posted By FBD
Post Event Scripter Script: check if file in download list already exists

Another script i quickly put together for a user request, may be useful to others too:

What this script does:
- by clicking on a toolbar-button...
- without actually having to start downloads......
Forum: Eventscripter 24.11.2023, 00:06
Replies: 3,086
Views: 11,541,155
Posted By FBD
You mixed those up, sorry if i wasn't clear...

You mixed those up, sorry if i wasn't clear enough, so for clarity;

Script that waits 4 minutes after a reconnect triggered by jDownloader and alerts you if the internet connection was not...
Forum: Eventscripter 23.11.2023, 23:28
Replies: 3,086
Views: 11,541,155
Posted By FBD
No, i used "http :// ifconfig .me/mime" (without...

No, i used "http :// ifconfig .me/mime" (without the spaces of course, have to add them otherwise the forum will remove the url). You can use any website to test, you just have to adjust the test...
Forum: Eventscripter 23.11.2023, 22:45
Replies: 3,086
Views: 11,541,155
Posted By FBD
Yes, you could add a delay again and then try to...

Yes, you could add a delay again and then try to fetch a webpage like this:


sleep(240000);
var myhtmlSourceString = getPage("http :// ifconfig .me/mime"); // remove spaces in url!
if...
Forum: Eventscripter 23.11.2023, 21:28
Replies: 3,086
Views: 11,541,155
Posted By FBD
Correct so far but notice that the function is...

Correct so far but notice that the function is called playWAVAudio, so you need a .wav file.



you can add this before the playWavAudio command:

sleep(180000);

Which will delay the play of...
Forum: Eventscripter 23.11.2023, 18:48
Replies: 3,086
Views: 11,541,155
Posted By FBD
The Event Scripter has two events that can...

The Event Scripter has two events that can trigger scripts,

Before a Reconnect
After a Reconnect


so if you want to play a sound, just create a script with the appropriate trigger that...
Forum: Eventscripter 22.11.2023, 02:47
Replies: 3,086
Views: 11,541,155
Posted By FBD
See my previous response:

See my previous response:
Forum: Eventscripter 21.11.2023, 15:35
Replies: 3,086
Views: 11,541,155
Posted By FBD
This is easily done with some regular expressions...

This is easily done with some regular expressions in the Packagizer, click the Wiki/FAQ link at the top here and check out the Knowledgebase pages for the Packagizer - or come to the support chat and...
Forum: Eventscripter 22.08.2023, 17:34
Replies: 3,086
Views: 11,541,155
Posted By FBD
Script: Copy selected links from the download list back to the linkgrabber

For anyone who finds that useful:

// Copy links back to LinkGrabber {by fbd - github.com/FarBeyondDriven/JDscripts}
//
// Trigger : "DownloadList Contextmenu Button Pressed"
//
// Add a...
Showing results 1 to 27 of 27

 
Forum Jump
All times are GMT +2. The time now is 12:20.
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 - 2025, Jelsoft Enterprises Ltd.