looks great installed and working

2 things though
Firstly should the player name fill in automatically as it dosnt on my install?
Secondly I wanted to put my games folder outside of the threads install I try and do this with all hacks as I find it neater.
So I created a paths.php file with the following in:
<?
$threadspath = "PATH TO THREADS";
$baseurl = "PATH TO WEB ROOT";
?>
==========
then I have removed this section of code in every game php file and gameindex.php:
// What is the PATH (not URL) to your threads install
and added this in its place:
// Require the Paths
require ("paths.php");
==========
and in gamesindex.php did a find and replace:
find: $config['phpurl']
replace with: $baseurl
==========
and index.php now looks like this:
require ("paths.php");
// Require the library
require ("$threadspath/main.inc.php");
header ("Location:$baseurl/games/gameindex.php");
HTH