Great work so far. For anyone having trouble...make sure you have Disabled AdBlockPlus...it filters ads.php? by default (don't ask me how I know this...

)
My question is:
What is the best way to show different ads (in my case navbar) in different forums?
From reading this thread and testing it is possible to put something like this...
Code:
<if condition="in_array($forumid, array(5,6,7))">
$ad_navbarBelow
<else />
<if condition="THIS_SCRIPT == 'index'">
$ad_navbarBelow
</if>
</if>
...directly in the navbar template and it works
great. Only problem is that it's only showing whatever single ad I've put into the adcode section of this plugin. My goal will be to show different ads in different forums and on the forum index.
Seems like I should be able to use something like this directly into the adcode box in this plugin...
Code:
<if condition="in_array($forumid, array(5,6,7))">
<img src="banner1.jpg">
<else />
<if condition="THIS_SCRIPT == 'index'">
<img src="banner2.jpg">
</if>
</if>
...but in this case the conditionals don't work and I just get two ads displayed. Any hints?
This seems like me missing something trivial.
thanks.