Its a fresh install. Create a template called Arcade? I assure you there is no mention of that in the guide. All I see in the template alterations and modifications is:
Code:
Template Modifications
======================
Make the following alterations to these existing templates, and save them.
==============
postbit
==============
Find:
___________________________________________________________________________________________
<if condition="$show['pmlink']">
???????????????????????????????????????????????????????????????????????????????????????????
Above this, add:
___________________________________________________________________________________________
<if condition="$post['arcadesettings'] & 4 AND $post[userid]!=$bbuserinfo[userid] AND $bbuserinfo[userid]!=0">
<tr><td class="vbmenu_option"><a href="arcade.php?$session[sessionurl]do=newchallenge&userid=$post[userid]" target="_self">Challenge $post[username] in the Arcade</a></td></tr>
</if>
???????????????????????????????????????????????????????????????????????????????????????????
Find:
___________________________________________________________________________________________
<if condition="$post['rank']"><div class="smallfont">$post[rank]</div></if>
???????????????????????????????????????????????????????????????????????????????????????????
Below this, add:
___________________________________________________________________________________________
$post[arcadeawards]
???????????????????????????????????????????????????????????????????????????????????????????
==============
navbar
==============
Find:
___________________________________________________________________________________________
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>
???????????????????????????????????????????????????????????????????????????????????????????
Below this, add:
___________________________________________________________________________________________
<td class="vbmenu_control"><a href="arcade.php?$session[sessionurl]">Arcade</a></td>
???????????????????????????????????????????????????????????????????????????????????????????
Find:
___________________________________________________________________________________________
</table>
</div>
<!-- / header quick search form -->
???????????????????????????????????????????????????????????????????????????????????????????
Above this, add:
___________________________________________________________________________________________
<tr>
<td class="thead">Arcade Game Search</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="arcade.php" method="post">
<input type="text" class="bginput" name="search" size="20" />$gobutton<br />
</form>
</td>
</tr>