Thank you
Installed - Voted Excellent and nominated MOTM
One question however...

Is there any way to restrict the download button in the navbar to certain usergroups?
EDIT: I figured it out... in the plugin code that adds the Downloads navbar button, I wrapped the code in an if statement using the is_member_of function:
PHP Code:
if (is_member_of($vbulletin->userinfo, 6, 7, 5))
{
// originial plugin contents goes here
}
In addition to this it would be nice to have the ability to set permissions to categories for each usergroup similar to how the forum permissions are done.