heres a tidbit I tried it and it locks it down
in all the games <insertgametitle>.php
#
#find
#
if (($anonplay) && (!$user['U_Username'])) {
#
#change to
#
if (($anonplay) && (!$user['U_Username']) || ($user['U_Username'] == '')) {
and in gameindex.php
#
#find
#
$html = new html;
$html -> send_header($pagetitle,$Cat,0,$user);
#
#and change to
#
$html = new html;
// ----------------------------------------------------------------------
// If we are not logged in, then present a log on form, otherwise present
// a menu of options.
if(($user['U_Username'] == ''))
{
$config['iip_call'] = 1;
$html -> not_right ("{$ubbt_lang['ADMOD_ONLY']}",$Cat);
}
$html -> send_header($pagetitle,$Cat,0,$user);
[b]the above code also works in the genericpage.php that is posted on this site and pretty much locaks them down in they aren't logged in