The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
Ok, so here's what I'm trying to do...
I want to display a banner ad on every "Odd" numbered post via a plugin. Here's what I have so far: PLUGIN: Product: vBulletin Hook Location: showthread_complete Title: OddSig Plugin PHP Code: Code:
$number=$post[postid]; if( is_odd($number) ) { $oddSig=1; } else { $oddSig=0; } function is_odd( $int ) { return( $int & 1 ); } <if condition="$oddSig == '1'"> FOO </if> It doesn't seem to work however. Can someone please help with this? Thanks in advance. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|