I can probably help... just a template conditional. I'll edit my post with instructions.
Edit: Okay here you go...
Locate in your FORUMHOME template:
HTML Code:
<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
Add underneath that:
HTML Code:
<!-- guest welcome message -->
<if condition="$bbuserinfo[usergroupid]==1">
<thead>
<tr>
<td class="tcat" colspan="5">Welcome to $vboptions[bbtitle].</td>
</tr>
<tr>
<td class="alt1" colspan="5">
<b><div class="smallfont">Put whatever Guest information you'd like in here.</div></b>
</td>
</tr>
<tr align="center">
<td class="tfoot"> </td>
</tr>
</thead></if>
<!-- / guest welcome message -->
That's it! It's really basic, so you can customize it as you wish.