It should work properly for
replies in event forums. For the event description, the problem is that the first post is fetched from the event table and added after the rest of the posts. There is no associated $userinfo from the post to draw permissions from.
You can create a plugin for Event Forums by going to Plugins & Products > Plugin Manager > Add New Plugin.
Hook Location: bbcode_permissions_userinfo
Title: Parser Permissions - Event Forums Integration
Execute Order: 5
Code:
if (THIS_SCRIPT == 'showthread' AND !empty($GLOBALS['lv_vb_eventforums_user']))
{
global $eventinfo, $lv_vb_eventforums_user;
$post['userid'] = $eventinfo['userid'];
$post['usergroupid'] = $lv_vb_eventforums_user['usergroupid'];
$post['username'] = $lv_vb_eventforums_user['username'];
$post['membergroupids'] = $lv_vb_eventforums_user['membergroupids'];
$postusername = $lv_vb_eventforums_user['username'];
}
Active: Yes
That should hook parser permissions into the event post.