bananalive,
also i found the bug that prevented article threads from being displayed with af_firstpost and af_comment templates: in "Alter Postbit" plugin, you forgot to import $vbulletin variable and it was inaccessible. changing plugin's first line from
Code:
global $counter, $articleforum;
to
Code:
global $counter, $articleforum, $vbulletin;
solved the problem.