Try this:
Code:
<if condition="(($post['postcount'] == 1) || ($post['islastshown'] && !$GLOBALS['vbulletin']->GPC['ajax'])) && $foruminfo['forumid'] != 69">
If not, break it down into multiple conditionals. Not pretty, but effective:
Code:
<if condition="$foruminfo['forumid'] != 69">
<if condition="$post['postcount'] == 1 || ($post['islastshown'] && !$GLOBALS['vbulletin']->GPC['ajax'])">