Vincent]Couldn't you make a new table called guest and then add guestip or something and add something like this into functions:
PHP Code:
if ($bbuserinfo[usergroupid] == 0) {
if ($ip == $DB_site->query("SELECT guestip FROM guest WHERE $guestip == $bbuserinfo[guestip]") {
$guestvisits = $guestvisits + 1;
} elseif ($ip != $DB_site->query("SELECT guestip FROM guest") {
$DB_site->query("INSERT INTO `guest` (`guestip`) VALUES ('$ip')");
$guestvisits = 1;
}
}
But I know pretty much nothing about MySQL so I doubt that will work >_<