HACK MODIFICATION - "PAY" POINTS IN SPECIFIC FORUMS INSTEAD OF PLAIN SUBTRACTION
-------------------------------------------
1. Do what it says
here.
-------------------------------------------
-------------------------------------------
In showthread.php, find:
-------------------------------------------
PHP Code:
$show['viewpost'] = iif(can_moderate($thread['forumid']), true, false);
$show['managepost'] = iif(can_moderate($thread['forumid'], 'candeleteposts') OR can_moderate($thread['forumid'], 'canremoveposts'), true, false);
-------------------------------------------
Add after:
-------------------------------------------
PHP Code:
$show['creditrequired'] = iif(in_array($thread['forumid'], explode(",",$vboptions['credit_sysapplied'])), 1, -1);
-------------------------------------------
In showpost.php, find:
-------------------------------------------
PHP Code:
$post['postcount'] = $postcount;
-------------------------------------------
Add after:
-------------------------------------------
PHP Code:
$show['creditrequired'] = iif(in_array($threadinfo['forumid'], explode(",",$vboptions['credit_sysapplied'])), 1, -1);
-------------------------------------------
In postbit & postbit_legacy templates,
find:
-------------------------------------------
PHP Code:
<if condition="$show['thumbnailattachment'] OR $show['attachments'] OR $show['imageattachment']">
-------------------------------------------
Add after:
-------------------------------------------
PHP Code:
<if condition="$show[creditrequired]==1 AND $vboptions[credit_mode]==1">
<div align="center" style="font-size: 8pt">
<b><br /><br />Note: By downloading attachments from this forum, you automatically pay $vboptions[credit_cost] points to the attachment owner.</b>
</div>
</if>
-------------------------------------------
Add a
credit_sysapplied setting into this hack's setting group. This is a plain text field. In it, input forum IDs of the forums you want this add-on to work in.
-------------------------------------------
Done!