You can write a plugin to do this, but you need to look in the code for the modification to grab the correct variable that will turn the modification off.
hook_location: style_fetch
php code:
PHP Code:
if ($styleid == x){
$vbulletin->options['modification_on_off'] = 0;
}
Change x to the styleid and 'modification_on_off' to the variable name used by the modification to turn it on and off. For instance, in my Move Smilies below Textarea mod, the on/off variable is named "lynne_sb_below", so I would write it like this to not show in styleid 5
PHP Code:
if ($styleid == 5){
$vbulletin->options['lynne_sb_below'] = 0;
}
As I said, you will need to look in the code for the modification to get the name of the option to turn it on and off. (And some mods don't have one.)