I had some trouble with the JSCalc plugin from the pack, it triggers everytime i enter a "+" character, even if it's at the start of the command, because of this i could not use folder modifiers (for example the "+music" from the FARR demo video).
I found a solution, I modified the JSCalc's code to ignore the command if it starts with the "+" char but to accept it if it's one of the later characters.
For that, I've changed
var searched = queryraw.search(regexp);
if(settings.special_trigger === "1" && searched !== -1){
with
var searched = queryraw.search(regexp);
var filteraliases = queryraw.match(new RegExp("^[^+]"));
if(settings.special_trigger === "1" && searched !== -1 && filteraliases){
in the
CZBPack\JScalc\fsubscript.js file.
I thought maybe some other people might be interested in this fix.
P.S. thanx CZB for the pack, i use the scripts a lot and i learned a lot from the script's code too.