Quote:
Originally Posted by MixMakers
Great hack! I was wondering if it'd be possible to give the points the attatchment costs to the uploader of the file. So if 10 people download a 10pt attatchment, the uploader would receive 100 pts. I think that would be a great addition.
Also, does the credits received per attatchment option work? If so, mine does not work and I have no idea why.
|
Dark Visor did it for me. Here is the code, with his blessings.
In attachment.php replace entire block of
Quote:
// Begin Download Credit System ...
// End Download Credit System
|
with:
Quote:
// Begin Download Credit System if($vboptions['credit_mode'])
{
// quick for exceptional groups not restricted by this credit system
if(in_array($attachmentinfo['forumid'], explode(',', $vboptions['credit_sysapplied'])))
{
$usercredits = $bbuserinfo['uttpoints'];
$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 uttpoints=uttpoints-$cost WHERE userid = $bbuserinfo[userid]");
$DB_site->query_first("UPDATE " . TABLE_PREFIX . "user SET uttpoints=uttpoints+$cost WHERE userid = $attachmentinfo[userid]");
}
}
}
// End Download Credit System
|
There is also a conditional to put in postbit to let people know that they are 'paying' x points to user for downloading.