Latest discussions are just kind of digest from all the forum, so if user is not logged in, he still is able to browse forum-by-forum to see the new stuff? Honestly I don't understand such approach. And it would be useful only if you are set up $statsPageModern setting to FALSE which is kind of old-fashioned layout...
Anyway, the simplest solution in this case is only to modify index.php. Where it says
require($pathToFiles.'bb_func_ldisc.php');
$listTopics=$list_topics;
you need to put a condition
if($user_id!=0){
require($pathToFiles.'bb_func_ldisc.php');
$listTopics=$list_topics;
}
else{
$listTopics='HTML code for guests';
}