So I installed this, then realized it wasn't working with PaulM's Unread Posts mod.
There is probably a better way to get this to work with it, but this is what I did.
Open Plugin: Unread Posts and Reputation, Hook: Parse Templates
Find:
Code:
$eforums = unserialize($vbulletin->options['dupexcl']);
Add under it:
Code:
$eforums2 = explode(",", $vbulletin->userinfo['excludeforumids']);
Find:
Code:
in_array($xid,$eforums)
Add under it:
Code:
OR in_array($xid,$eforums2)
That should be it!
Hopefully this helps someone else using the same mod. =) Keep in mind though if/when Paul updates his mod, you'll have to make these changes again.