Hmm, sorry the attachment problem will stay a while, as attachment setting checkings are done somewhere else and not where the other checks are done, i'll try to write an easy fix, but i'm currently strongly overworked, and so the next version may take a bit of time...
as for excluding some forums:
find:
PHP Code:
if ($type != 'thread' AND $threadinfo['lastpost'] > TIMENOW - 3600 AND $threadinfo['lastposter'] == $post['postusername'])
and change it into:
PHP Code:
if ($type != 'thread' AND !in_array($threadinfo['forumid'], array(x,y,z)) AND $threadinfo['lastpost'] > TIMENOW - 3600 AND $threadinfo['lastposter'] == $post['postusername'])
and replace x,y,z with your list of forumids