Some people are having the problem that the highscores aren't updated on their forums. After some candlelight debugging via email I found the fix for that:
In Arcade.php
Find:
PHP Code:
$DB_site->query("INSERT INTO " . TABLE_PREFIX . "gamesessions (sessionid,gamename,userid,start,sessiontype,challengeid) VALUES ('','$shortname','$bbuserinfo[userid]','$gametime',$sessiontype,$challengeSQL)");
$lastid = mysql_insert_id();
Replace with:
PHP Code:
$DB_site->query("INSERT INTO " . TABLE_PREFIX . "gamesessions (sessionid,gamename,userid,start,sessiontype,challengeid) VALUES ('','$shortname','$bbuserinfo[userid]','$gametime',$sessiontype,$challengeSQL)");
$lastid = mysql_insert_id($DB_site->link_id);