Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //
- // JDownloader2 EventScript - self-modifying test code
- //
- const SCRIPT_ID='A6D9CB280A41BF7F47E8ACC76434394F';
- var f=false;
- var scripts = getScripts();
- scripts.some(function(s, idx) {
- try {
- if (s.script.indexOf("SCRIPT_ID='"+SCRIPT_ID) != -1) {
- scripts[idx].script = s.script.replace(/\sf=false;/, ' f=true; // OK!!');
- return true;
- }
- } catch (e) {};
- })
- setScripts(scripts);
- // by mgpai
- function getScripts() {
- return callAPI(
- "config", "get",
- "org.jdownloader.extensions.eventscripter.EventScripterConfig",
- "cfg/org.jdownloader.extensions.eventscripter.EventScripterExtension",
- "Scripts"
- );
- }
- function setScripts(scripts) {
- callAPI(
- "config", "set",
- "org.jdownloader.extensions.eventscripter.EventScripterConfig",
- "cfg/org.jdownloader.extensions.eventscripter.EventScripterExtension",
- "Scripts", scripts
- );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement