Global.php'yi aç ve şunu bul.

else
{
$DB_site->query("INSERT INTO session (sessionid,userid,ipaddress,lastactivity,location) VALUES (NULL,$bbuserid,'$ipaddress',$datenow,'".addslashes($scriptpath)."')");
}

Bununla değiştir.;

else
{
// Maximum Users for the forum
$maxusers = 30;
$usercount=$DB_site->query_first("SELECT COUNT(sessionid) AS sessions FROM session");
$totalonline=$usercount[sessions];
if ($totalonline >= $maxusers)
{
// Insert your Explanation of why they can't use the forum here
echo "Sorry there are too many users on the forum currently, please try later";
exit;
}
else
{
$DB_site->query("INSERT INTO session (sessionid,userid,ipaddress,lastactivity,location) VALUES (NULL,$bbuserid,'$ipaddress',$datenow,'".addslashes($scriptpath)."')"); 
}
}

Yedek al önce sonra sonucu bana da söyle. Kırmızı yeri kafana göre değiştir. 100 yap.