Cool Vdinh!
Your Online-Thing works like a charm!!!
Question: Any Idea, how to make the "Tetris-King Addon" work with all other Arcade-Games (like on the Main Arcade Page)?
Heres the Functions-Code for 2.2.5:
Code:
// King of Tetris Hack, by John Warwick
global $DB_site;
$leaderboard = $DB_site->query_first('SELECT userid FROM arcade WHERE game = "tetris" ORDER BY score DESC');
$kingid = $leaderboard['userid'];
if ($post[userid] == $kingid) {
$crown = '<img src="{imagesfolder}/crown.gif" alt="King of Tetris!" />';
} else {
$crown = '';
}
Thanks!!