You must edit TWO parts of your navbar for dropdown menu's. The first part adds the text on the navbar and the second part adds the menu items to the menu.
Open your templates and go to navbar. Find this:
Code:
<td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td>
</if>
Underneath that add this:
Code:
<td id="FunStuff" class="vbmenu_control"><a href="$show[nojs_link]#FunStuff">Fun Stuff</a> <script type="text/javascript"> vbmenu_register("FunStuff"); </script></td>
Then find this near the bottom:
Code:
<!-- / user cp tools menu -->
</if>
Add below that:
Code:
<!-- your FunStuff menu -->
<div class="vbmenu_popup" id="FunStuff_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">$vbphrase[name]</td></tr>
<tr><td class="vbmenu_option"><a href="casino.php?$session[sessionurl]">Casino</a></tr>
<tr><td class="vbmenu_option"><a href="arcade.php$session[sessionurl_q]">Arcade</a></td></tr>
<tr><td class="vbmenu_option"><a href="WHATEVER.php$session[sessionurl_q]">WHATEVER ELSE YOU WANT IN THE MENU</a></td></tr>
</table>
</div>
<!-- / your FunStuff menu -->
Just change anything in caps to what you want, and rename "FunStuff" to whatever you want to to use. But remember that the top code is linked to the bottom code. So if you change FunStuff in the top code, you must also chnage it in the first line in the bottom code @ ="vbmenu_popup" id="FunStuff_menu"