Professional vBulletin Hosting!
thumb

Premium & Custom vB Skins..

vBulletin and Coding Guides
Show number of arcade titles in postbit V3 Arcade PDF Print E-mail

Only tested on v3 Arcade 1.5.8:
1) Go into ACP > Plugins & Products > Plugin Manager > Awards Plugin Postbit > Edit
2) Find:

PHP Code:
foreach ((array)$awardcache as $userid => $awards) {

add before:

PHP Code:
$post['awardnum'] = 0;

3) Find:

PHP Code:
eval('$this->post[\'arcadeawards\'] .= "' . fetch_template('arcade_award_bit') . '";');

add after:

PHP Code:
$post['awardnum']++;

5) Open up your postbit/_legacy template and find:

HTML Code:
                <div>
$vbphrase[posts]: $post[posts]
</div>

add after:

HTML Code:
<if condition="THIS_SCRIPT == 'showthread'"><div>Number of Arcade Awards: $post[awardnum]</div></if>

and your done