Sorry, I wasn't reading that carefully.
In register.php, find
Code:
// insert custom user fields
and right before it, add
Code:
$DB_site->query("INSERT INTO thread(threadid,title,lastpost,forumid,open,replycount,postusername,postuserid,lastposter,dateline,iconid,visible,attach) VALUES (NULL,'".addslashes(htmlspecialchars($username))."\'s Guestbook"','".time()."','FORUMIDHERE','1','0','".addslashes(htmlspecialchars($username))."',NULL,'".addslashes(htmlspecialchars($username))."','".time()."','1','1','0')");
That should work. It auto-increments the userid fields, names the thread "Username's Guestbook", etc. The one thing you need to do is put the forumid where it says FORUMIDHERE. It's the number of the forum that this should be inserted into.