what is this going to do for you?
Would it be beneficial to look at having dynamic slots based on the number of posts using plug-ins?
This would allow you to have multiple slots... I have mine after post 3, 5, 7 and the last post of the page (default is 10 per page).
hook location - postbit_display_complete
Code:
global $ids;
$excluded = 88; // my VIP usergroup for no showing ads
if (!is_member_of($vbulletin->userinfo, $excluded) AND $post['postid'] == $ids[post_number] AND THIS_SCRIPT !== 'private')
{
$template_hook['postbit_end'] .= '
<CENTER>
AD CODE HERE
</CENTER>';
}
I'm sure someone that is better than me can probably array the $ids for the posts to have 1 plug in as opposed to multiples....
credit to MarkFL for helping me initially with mine.
Scott