hey thanks
there is two issues
the first code error here
your code must be
PHP Code:
// MioTraGuSa Modification Last Scores
// Fetch the latest scores.
$scorbits = '';
$scorquery = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "arcade_news_scor AS arcade_news_scor ORDER BY datescor DESC LIMIT " . $vbulletin->options['quicksearchresults']);
while ($scor = $db->fetch_array($scorquery))
{
exec_switch_bg();
// Format the score news date/time.
$scor['date'] = vbdate($vbulletin->options['logdateformat'], $scor['datescor']);
$scor['newstext'] = unhtmlspecialchars($parser->do_parse($scor['scortext'], false, true, true, false, true, false));
if ($scor['scorid'] == "1")
{
eval('$scorbits .= "' . fetch_template('arcade_scor_bit_first') . '";');
} else {
if ($scor['scorgame'] <= "1")
{
eval('$scorbits .= "' . fetch_template('arcade_scor_bit') . '";');
}
}
}
// MioTraGuSa END Modification Last Scores
notice the additional
}
at the end
if not it will give error
the second thing Is that the Last Scores menu doesn't show any thing exept "Instalation of Show last Scores - Done!!" phrase knowing that i have played some games & get in some hight scores & in some not hight score
this is my
arcade