Solution to Avisynth not finding plugins/scripts:
Keep your plugins
organized in a specific, easy-to-remember folder (mine is c:\avsplugins), then loadplugin/import the ones you need when needed.
Example:
Code: Select all
LoadPlugin("C:\avsplug\TIVTC.dll")
Import("C:\avsplug\script\MCTemporalDenoise.v1.4.16.avsi")
Doing so allows you to avoid potential conflicts most of the time as well as being a good workaround in your current situation. The only drawback is that you do have to manually load the plugins in each script, which can be annoying at times. It is
well worth it in my opinion.