Here's a way to prevent certain usergroups from being logged as having seen an ad (they'll still see them but the ad view won't be logged). In the file phpadsnew.inc.php find the following code:
PHP Code:
if ($phpAds_config['log_adviews'] && !$phpAds_config['log_beacon'])
Directly above it add
PHP Code:
if (is_member_of($bbuserinfo, 6))
{
$phpAds_config['log_adviews'] = false;
}
If you need to use your phpadsnew installation for non vbulletin pages you'll need to create seperate versions of phpadnew.inc.php for vbulletin and your other pages to call.