I notice that you are calling banner groups 2 and 3. Do you have content/banners defined in those groups? ie: vbbanners:3 vs vbbanners:0
I have all of mine in group 0 and use the same code here, and it works fine.
This is what I have, to put them every 5th post:
PHP Code:
Styles & Templates -> Style Manager -> edit template -> postbit templates -> postbit_legacy
;.....at the VERY END add this: (puts add after 5th and 10th post)
<vb:if condition="THIS_SCRIPT == 'showthread' AND (($post['postcount'] % 15 == 10) OR $post['postcount'] == 10)">
<div class="thread_controls">
<div style="width: 100%; text-align: center">
<!--@vbbanners:0@-->
</div>
</div>
<vb:elseif condition="THIS_SCRIPT == 'showthread' AND (($post['postcount'] % 15 == 5) OR $post['postcount'] == 5)" />
<div class="thread_controls">
<div style="width: 100%; text-align: center">
<!--@vbbanners:0@-->
</div>
</div>
</vb:if>