vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   v3 Arcade - Games Arcade & Challenge System [vB 3.0.3] (https://vborg.vbsupport.ru/showthread.php?t=60377)

ConqSoft 03-30-2004 10:41 PM

Worked fine for me, but I don't use a table prefix. So, might be an issue with the prefix code.

dstruct2k 03-30-2004 10:45 PM

Already fixed that. :) (Gotta love edits.)

SpankMe 03-31-2004 12:29 AM

Great hack. Now all we need is the .FLA source file for Xevious flash version to add to the game list.

OGT 03-31-2004 12:39 AM

Quote:

Originally Posted by HarryButt
FYI: Change the order of the games list :surprised:

In arcade.php

Code:

LEFT JOIN " . TABLE_PREFIX . "games AS games ON gamesessions.gamename = games.shortname
                $whereclause AND $sessionclause ORDER BY gamesessions.gamename DESC
        ");

change to

Code:

LEFT JOIN " . TABLE_PREFIX . "games AS games ON gamesessions.gamename = games.shortname
                $whereclause AND $sessionclause ORDER BY gamesessions.gamename ASC
        ");

EX: http://www.gzhq.net/forums/arcade.php?

to help those searching for alphabetized game list. searching alpha* does not bring up this post, and it took me an hour to find this. alphabet alphabetize alphabatize

KamuiX 03-31-2004 03:29 AM

Ah, thanks for the info ohgeetee :)

Dejavu 03-31-2004 07:11 AM

Quote:

Originally Posted by dstruct2k
I don't think the installer made my gamesessions table.
Code:

Database error in vBulletin 3.0.0:
 
Invalid SQL:
                SELECT COUNT(*) AS plays, SUM(finish-start) as time
                FROM gamesessions
                WHERE valid=1
 
mysql error: Table 'db87385808.gamesessions' doesn't exist
 
mysql error number: 1146

That doesn't look right though... "db87385808" is my database, not a table name...


[edit]Checked in phpmyadmin... the table is "vb3__gamesessions" so something's not working right.

[edit 2]Found the bug in arcade.php.... Most of you aren't using table prefixes, otherwise you'd have this bug too.
FIX:
Find:
Code:

$stats = $DB_site->query_first("
SELECT COUNT(*) AS plays, SUM(finish-start) as time
FROM gamesessions
WHERE valid=1
");


Replace with:
Code:

$stats = $DB_site->query_first("
SELECT COUNT(*) AS plays, SUM(finish-start) as time
FROM " . TABLE_PREFIX . "gamesessions
WHERE valid=1
");



I found the same problem with the mini-stats addon included with the release, didn't have a clue what was going on until i opened the file, and sure enough it didn't have the TABLE_PREFIX or whatever it is in its place :)

JamesFrost 03-31-2004 10:22 AM

John,

you mentioned previously a new version slated to appear after Gold came out. Do you have a current timescale and features list of what will be in it?

John 03-31-2004 10:25 AM

Quote:

Originally Posted by JamesFrost
John,

you mentioned previously a new version slated to appear after Gold came out. Do you have a current timescale and features list of what will be in it?

Check the "Site Survey" thread on v3arcade.com

maverick1236 03-31-2004 02:29 PM

is there a way to manually or automatically delete all high scores weekly?

i have one user hogging all the trophies-and it discourages everyone else...

Okiewan 03-31-2004 02:45 PM

Quote:

Originally Posted by maverick1236
is there a way to manually or automatically delete all high scores weekly?

i have one user hogging all the trophies-and it discourages everyone else...

In the admin cp.


All times are GMT. The time now is 11:35 PM.

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.03298 seconds
  • Memory Usage 1,745KB
  • 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
  • (5)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)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