Are you trying to change usergroups that can view the box? If so go in plugin manager and edit the plugin called "Template"
Find this
PHP Code:
if ($vbulletin->userinfo[usergroupid]=='6' OR $vbulletin->userinfo[usergroupid]=='5')
You can change the ids 6 and 5 as you want if you want to add an id for example 3 write this
PHP Code:
if ($vbulletin->userinfo[usergroupid]=='6' OR $vbulletin->userinfo[usergroupid]=='5' OR $vbulletin->userinfo[usergroupid]=='3')