I ended up getting this working. Not sure if this will help anybody but this link really helps with the conditions:
http://www.vbulletin.com/forum/forum...hread?t=198875
What I ended up doing was creating this to show an ad after every first post on every page, in certain forums, for specific user groups.
PHP Code:
<vb:if condition="$post[postcount] % $vboptions[maxposts] == 1 AND in_array
($GLOBALS[forumid], array(6,7,18)) and is_member_of($bbuserinfo,6)">
<div class="postbit">
<h3 class="posthead"> TSET2</h3>
<div class="postbody">--TEST--</div>
</div>
<br />
</vb:if>
Here is what it looks like...