PHP Code:
...
<li><a href="arcade.php?&act=Arcade&do=createtourney">Create New Tournament</a></li>';
if (is_member_of($vbulletin->userinfo, x))
{
$tablinks .= '<li class="popupmenu">
<a href="javascript://" class="popupctrl">Misc. Menu</a>
<ul class="popupbody popuphover">
<li><a href="arcade.php?&act=Arcade&module=settings">Settings</a></li>
<li><a href="arcade.php?&act=Arcade&module=favorites">Favorites</a></li>
<li><a href="arcade.php?&act=Arcade&module=report">Rankings</a></li>
</ul></li>';
}
$tablinks .= '<li class="popupmenu">
<a href="javascript://" class="popupctrl">Games Menu</a>
<ul class="popupbody popuphover">
...
Change the x in the condition to the usergroupid you want to show it to. Or use this:
PHP Code:
if (!is_member_of($vbulletin->userinfo, x))
and change the x to the usergroupid you do NOT want to show it to.