Mr H, I had the same problem as you. I tried doing this, and it worked... give it a try, and let me know if it works for you.
Open shoutbox.php-
REPLACE
PHP Code:
if ($bbuserinfo[usergroupid] == 6) {
eval("\$adminoptions = \"".gettemplate("shoutbox_adminoptions",1,0)."\";");
}
WITH
PHP Code:
if ($bbuserinfo[usergroupid] == 5 || $bbuserinfo[usergroupid] == 6 || $bbuserinfo[usergroupid] == 7) {
eval("\$adminoptions = \"".gettemplate("shoutbox_adminoptions",1,0)."\";");
}
this should do the trick.