Probably a piece of cake for most people here, but this is something simple that I just couldn’t find anywhere. Thanks to @tdiaz for the starting piece of this, and @Victini for helping me put it together.
Separate out scripts for Various Artists/VA and Non-VA
$noop(★ Detect Various Artist ★)
$if($eq(%albumartist%,Various Artists),
$set(_isVarious,1)
)
$noop(VARIOUS ARTISTS SCRIPT)
$if(%_isVarious%,
$noop(any code here will apply to VA)
)
$noop(STANDARD ALBUM SCRIPT)
$if($ne(%_isVarious%,1),
$noop(any code here will apply to non-VA)
)