Ok detecting it's showthread is easy
Code:
<if condition="THIS_SCRIPT == 'showthread'">
but is there a way to tell how many posts are on the page?
e.g. If a thread has more than 10 posts would it be something like this?
Code:
<if condition="THIS_SCRIPT == 'showthread' AND $post['postcount']>10">do something</if>
or do I have to use this freaky bit of stuff below somehow if there?
Code:
$post['postcount'] % $vboptions['maxposts'] == x"
tia