I haven't tried it so I don't know if it will work, but you could try making a plugin with code like:
PHP Code:
if (some check for forumid)
$vbulletin->options['reputationenable'] = 0;
The problem is figuring out where to do that. I'm not sure you can do it in a "global" hook (one that gets run on every page) because I think sometimes you don't know what forum you're dealing with until you get in to the specific script.
You could probably start out with a plugin using
showthread_getinfo and something like:
PHP Code:
if (in_array($thread['forumid'], array(1, 2, 3)))
$vbulletin->options['reputationenable'] = 0;
(or else try what HMBeaty suggests in the next post).