The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
![]()
We had created something for reputation which looked like this.
The plugin shows rep total rather than needing to hover over it. It also creates pip every 5 rep members have on the site. This is the code we have which isnt working now... Code:
// Fix for multiple reputation descriptions $templater = vB_Template::create('postbit_reputation'); $templater->register('post', $post); $post['reputationdisplay'] = $templater->render(); // Now let's make up the pip thingys... for ( $i = 1; $i < ceil ( intval( $post['level'] ) / 4.5 ); $i++ ) { if ($i > 8) { break; } $post['reputationdisplay'] .= '<img src="images/reputation/reputation_highpos.png" alt="" />'; } |
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|