I have a small problem, in the plugin "VSa - Flash-Image Banner Rotator - OU" you use;
PHP Code:
if (in_array($vbulletin->userinfo['userid'], preg_split('#\s*,\s*#s', $vbulletin->config['SpecialUsers']['superadministrators'], -1, PREG_SPLIT_NO_EMPTY)))
to determine if the Quick Links menu should have the "Manage Banners" item added, but in "VSa - Flash-Image Banner Rotator - SP" you use;
PHP Code:
if ($vbulletin->userinfo['usergroupid']=='6')
which means if a user group has super moderator permissions, but isn't group ID 6, they get the "Manage Banners" menu option but when it's clicked they are taken to a page of smilies!
EDIT TO ADD - This also applies to editing a banner where it checks for usergroupid==6 too.