this is what i have for the attatchment.php edit. at the bottom is the only similar code that i have to the one you say i have to edit. is this correct?
PHP Code:
// Begin Download Credit System
if($vboptions['credit_mode'])
{
// quick check for exceptional groups not restricted by this credit system
if(!in_array($bbuserinfo['usergroupid'], explode(',', $vboptions['credit_noapplied'])))
{
if($bbuserinfo['userid'] != $attachmentinfo['userid'])
{
$usercredits = $bbuserinfo['credits'];
$cost = $vboptions['credit_cost'];
if(($usercredits < $vboptions['credit_cost']))
{
eval(print_standard_error('error_notenuffcredits'));
}
else
{
$DB_site->query_first("UPDATE " . TABLE_PREFIX . "user
SET credits = credits - $cost
WHERE userid = $bbuserinfo[userid]
");
}
}
}
}
// End Download Credit System
if ($attachment['postid'] == 0 AND $bbuserinfo['userid'] == $attachmentinfo['userid'])