for the storehack i can't help ya, because i don't use it.
i think all you have to do ist to put the add to storpoint part of newreply under the user post count update part.
to exclude forums:
change this:
PHP Code:
if($lastpost['userid'] != $bbuserinfo['userid'] OR (time() - $lastpost['dateline']) > 3600 OR ($attachmentid and !$foruminfo['moderateattach'])) {
into this:
PHP Code:
if(in_array($threadinfo['forumid'], array(x,y,z)) or $lastpost['userid'] != $bbuserinfo['userid'] OR (time() - $lastpost['dateline']) > 3600 OR ($attachmentid and !$foruminfo['moderateattach'])) {
and change x,y,z into the forumids you want to exclude