vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Add-On Releases - v3 Arcade - Games Arcade System for 3.6.0 (https://vborg.vbsupport.ru/showthread.php?t=114012)

crkgb 10-13-2008 11:19 PM

Thank you very much. It fixed the issue.

I also have a general question/idea.

I don't know if such an addition to v3arcade exists but here is something to ponder on.

I understand that we already have the LEADERBOARD modification. But it only considers the titles.

It would be nice to eventually get something like a SCOREBOARD, where the overall performance of the player is considered. Games played. Tries, etc.

1 place - 10 points
2 place - 8 points
3 place - 6 points
4 place - 5 points
5 place - 4 points
6 place - 3 points
7 place - 2 points
8 place - 1 point

:D

TheLastSuperman 10-14-2008 02:17 PM

Quote:

Originally Posted by skhms (Post 1644193)
Only v3Arcade games are listed at the New Challenge page.
I am guessing you have installed IBPro games.

I have explained how you can fix it with an edit of arcade.php earlier.
Take a look here: https://vborg.vbsupport.ru/showpost....postcount=2929

/SK

Thanks as well!

I'm going to try IBpro games so this will help!

S-MAN

crkgb 10-15-2008 06:43 AM

In the v3Arcade settings I have it set up so that only the best result counts. it works for all the cases but when the same user gets the same score. Then there are 2 results for the same user listed.

Is there a way to fix this?

skhms 10-15-2008 05:36 PM

Quote:

Originally Posted by crkgb (Post 1645416)
In the v3Arcade settings I have it set up so that only the best result counts. it works for all the cases but when the same user gets the same score. Then there are 2 results for the same user listed.

Is there a way to fix this?

I fixed it this way, see below.
Note that I don't really take any responsibility for this code. It might be some much better way to do it...

In arcade.php
Find this chunk of code:
PHP Code:

    // Time for the scores.
    
$scores $db->query_read("SELECT arcade_sessions.*, user.username, user.arcadeoptions" iif($vbulletin->options['distinctscores'], ", " iif($game['isreverse']==1'MIN''MAX') . "(arcade_sessions.score) AS score") . " FROM " TABLE_PREFIX "arcade_sessions AS arcade_sessions
    LEFT JOIN " 
TABLE_PREFIX "user AS user ON (user.userid=arcade_sessions.userid)
    WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=
$game[gameid]
    " 
iif($vbulletin->options['distinctscores'], "GROUP BY arcade_sessions.userid") . "
    ORDER BY score " 
iif($game['isreverse']==1'ASC''DESC') . ", arcade_sessions.finish DESC
    LIMIT " 
$vbulletin->options['scoresperpage']);
    
    if (
$vbulletin->options['distinctscores'])
    {
        
$scorecache = array();
        while (
$score $db->fetch_array($scores))
        {
            
$scorecache[] = "(arcade_sessions.score=$score[score] AND arcade_sessions.userid=$score[userid])";
        }
        
$scorecache implode(' OR '$scorecache);
        
        
$scores $db->query_read("SELECT arcade_sessions.*, user.username, user.arcadeoptions FROM " TABLE_PREFIX "arcade_sessions AS arcade_sessions
        LEFT JOIN " 
TABLE_PREFIX "user AS user ON (user.userid=arcade_sessions.userid)
        WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=
$game[gameid] AND ($scorecache)
        ORDER BY score " 
iif($game['isreverse']==1'ASC''DESC') . ", arcade_sessions.finish DESC
        LIMIT " 
$vbulletin->options['scoresperpage']);
    } 

Replace it with this:
PHP Code:

    // Time for the scores.
    // Replaced code for finding scores, so it won't show duplicates on players with the same score. /SK
    
$scores $db->query_read"SELECT arcade_sessions.*, user.username, user.arcadeoptions FROM " TABLE_PREFIX "arcade_sessions AS arcade_sessions
    LEFT JOIN " 
TABLE_PREFIX "user AS user ON (user.userid=arcade_sessions.userid)
    WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=
$game[gameid]
    ORDER BY score " 
iif($game['isreverse']==1'ASC''DESC') . ", arcade_sessions.finish DESC
    " 
iif( !$vbulletin->options['distinctscores'], "LIMIT " $vbulletin->options['scoresperpage']) );
        
    if (
$vbulletin->options['distinctscores'])
    {
        
$sk_usedusers = array();
        
$scorecache = array();
        while( 
$score $db->fetch_array($scores) )
        {
            if( 
$sk_usedusers$score[userid] ] ) continue; 
            
$sk_usedusers$score[userid] ] = true;
            
            
$scorecache[] = "arcade_sessions.sessionid=$score[sessionid]";
        }
        
$scorecache implode(' OR '$scorecache);
                
        
$scores $db->query_read("SELECT arcade_sessions.*, user.username, user.arcadeoptions FROM " TABLE_PREFIX "arcade_sessions AS arcade_sessions
        LEFT JOIN " 
TABLE_PREFIX "user AS user ON (user.userid=arcade_sessions.userid)
        WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=
$game[gameid] AND ($scorecache)
        ORDER BY score " 
iif($game['isreverse']==1'ASC''DESC') . ", arcade_sessions.finish DESC
        LIMIT " 
$vbulletin->options['scoresperpage']);
    } 

also find this: (there is some small differences from the code above)
PHP Code:

    // Time for the scores.
    
$scores $db->query_read("SELECT arcade_sessions.*, user.username" iif($vbulletin->options['distinctscores'], ", " iif($game['isreverse']==1'MIN''MAX') . "(arcade_sessions.score) AS score") . " FROM " TABLE_PREFIX "arcade_sessions AS arcade_sessions
    LEFT JOIN " 
TABLE_PREFIX "user AS user ON (user.userid=arcade_sessions.userid)
    WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=
$game[gameid]
    " 
iif($vbulletin->options['distinctscores'], "GROUP BY arcade_sessions.userid") . "
    ORDER BY score " 
iif($game['isreverse']==1'ASC''DESC') . ", arcade_sessions.finish DESC
    LIMIT 
$start, " $vbulletin->options['scoresperpage']);
    
    if (
$vbulletin->options['distinctscores'])
    {
        
$scorecache = array();
        while (
$score $db->fetch_array($scores))
        {
            
$scorecache[] = "(arcade_sessions.score='$score[score]' AND arcade_sessions.userid=$score[userid])";
        }
        
$scorecache implode(' OR '$scorecache);
        
        
$scores $db->query_read("SELECT arcade_sessions.*, user.username FROM " TABLE_PREFIX "arcade_sessions AS arcade_sessions
        LEFT JOIN " 
TABLE_PREFIX "user AS user ON (user.userid=arcade_sessions.userid)
        WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=
$game[gameid] " iif($scorecache"AND ($scorecache)") . "
        ORDER BY score " 
iif($game['isreverse']==1'ASC''DESC') . ", arcade_sessions.finish DESC
        LIMIT " 
$vbulletin->options['scoresperpage']);
    } 

Replace it with:
PHP Code:

    // Time for the scores.
    // Replaced code for finding scores, so it won't show duplicates on players with the same score. /SK
    
$scores $db->query_read("SELECT arcade_sessions.*, user.username FROM " TABLE_PREFIX "arcade_sessions AS arcade_sessions
    LEFT JOIN " 
TABLE_PREFIX "user AS user ON (user.userid=arcade_sessions.userid)
    WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=
$game[gameid]
    ORDER BY score " 
iif($game['isreverse']==1'ASC''DESC') . ", arcade_sessions.finish DESC
    " 
iif( !$vbulletin->options['distinctscores'], " LIMIT $start, " $vbulletin->options['scoresperpage']) );

    if (
$vbulletin->options['distinctscores'])
    {
        
$sk_usedusers = array();
        
$scorecache = array();
        while( 
$score $db->fetch_array($scores) )
        {
            if( 
$sk_usedusers$score[userid] ] ) continue; 
            
$sk_usedusers$score[userid] ] = true;
            
            
$scorecache[] = "arcade_sessions.sessionid=$score[sessionid]";
        }
        
$scorecache implode(' OR '$scorecache);
        
        
$scores $db->query_read("SELECT arcade_sessions.userid, arcade_sessions.*, user.username FROM " TABLE_PREFIX "arcade_sessions AS arcade_sessions
        LEFT JOIN " 
TABLE_PREFIX "user AS user ON (user.userid=arcade_sessions.userid)
        WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=
$game[gameid] " iif($scorecache"AND ($scorecache)") . "
        ORDER BY score " 
iif($game['isreverse']==1'ASC''DESC') . ", arcade_sessions.finish DESC
        LIMIT 
$start, " $vbulletin->options['scoresperpage']);
    } 

/SK

crkgb 10-15-2008 10:10 PM

Thanks a lot. Worked perfectly

crkgb 10-28-2008 12:18 AM

It's so sad that there is no continuation to what could have been the best vb mod ever.

d3rf 10-28-2008 01:12 AM

so when is it coming out for 3.7 ?
Where can i get games?
Any one ? ? ?

Nadeemjp 10-28-2008 06:16 AM

would this work with 3.7.3 too?

crkgb 10-28-2008 10:42 PM

tabbed solution for Categories is good but it limits the number of categories you can have. Anybody ever faced the same problem? Is there an alternate solution for it?

Thank you

UltraFanatics 11-09-2008 05:04 PM

Does anyone know why im getting this message, i cant get into the arcade now

Sorry, no access granted here

But you may want to donate for this fantastic Arcade-Hack


All times are GMT. The time now is 10:15 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04236 seconds
  • Memory Usage 1,822KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete