The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
v3 Arcade - Games Arcade & Challenge System [vB 3.0.3] Details »» | |||||||||||||||||||||||||||
v3 Arcade - Games Arcade & Challenge System [vB 3.0.3]
Developer Last Online: Nov 2023
v3 Arcade [3.0.3]
Games Arcade for vB3 Game copyrights belong to their respective owners. v3 Arcade - Copyright ?2004 John Warwick, All Rights Reserved. __________________________________ Arcade Verson: 1.0 vB Version: vBulletin 3.0.3 Author: John Warwick Email: John[at]eovieinteractive.com Site: www.v3arcade.com ?????????????????????????????????? Updates ========================== 1.0.0 - Initial release 1.0.1 - Bug fix update ? This release addressed a couple of small bugs. Information on fixing these issues can be found in the FAQ. (Included in this zip.) 1.0.2 - Bug fixes and new features ? This release makes all games on the Arcade main page appear in the order which they were installed, regardless of whether or not it has been played. (With the newest games at the top.) ? It includes a page navigation system, allowing users to browse games by page. By default, 10 games appear per page. ? There is also a new search feature, for finding games by name/description. (Accessible through the "Search" menu in the navigation bar.) ? This release should be less CPU intensive than previous versions. 1.0.3 - Bug fixes ? Security fixes History & Hack Information - So, what is the v3 Arcade? The v3 Arcade is exactly what the name implies - an online games arcade that offers seamless integration with your vBulletin forum. The v3 Arcade is the first of the new generation of vBulletin additions. Back from its roots, the v3 Arcade is the vBulletin 3 edition of my original Arcade written in late 2002 (not to be confused with futureal's 'ProArcade', which was written during the Arcade's beta phase). v3 Arcade Features Include: ? Integrated Flash gaming for vBulletin 3 ? Advanced leader board system ? FULL Mozilla/Netscape Compatibility ? Moderation abilities for Mods/Super Mods/Admins ? PM & Email notification for events ? Advanced statistics for all users ? A higher level of security ? "Arcade Challenges", 1-on-1 contests between users ? Arcade awards system ? Automated and manual score pruning tools This installation comes loaded with the following games: ? Tetris ? Snake ? Asteroids ? Chopper Challenge ? Space Invaders If you have the source (.FLA) for a game that you want to use in the v3 Arcade, you can send the required files to john@v3arcade.com for conversion. (Providing permission has been given by the original author.) Within a reasonable delay, I'll post the converted game and installation script on vBulletin.org. Testing Tested on vBulletin 3.0.3, across multiple unhacked installations. Thanks to... ? Kura: For helping out with vB3 difficulties! ? Erwin: Whose vB2 Flash Player inspired the original hacks ? Paul Neave: For providing the source for 4 of the standard v3 Arcade games IMPORTANT NOTES ? If you do install this hack, please click on the INSTALL button. There are going to be some updates for this which you're really not going to want to miss! ? Each Arcade page has an Eovie Interactive and Flash Player link at the bottom. This is optional, but greatly appreciated. ? You may have noticed that this release of the v3 Arcade is not fully phrased. To phrase the arcade would require well over a hundred phrases to be added, making for a lengthy installation process! Futures version of the v3 Arcade will be phrased, with a more automated installation. ? And don't forget - BACKUP BEFORE YOU INSTALL! Regarding the "ProArcade" There has been a lot of debate on vb.org recently about the ownership of hack "concepts". My original Arcade hack (on which the v3 Arcade is based), was a progression of the my vBTetris Leaderboard hack - both of which came about before the ProArcade. I've spoken to Erwin regarding this, and he can confirm that this has always been an independent development; hence the v3 Arcade was authorised for release. Fixes If you're installing the Arcade from scratch, there are no fixes or updates to be applied. Simply follow the instructions in Installation.txt. If you've already installed the Arcade, make the changes in Updates.txt. [Click HERE to view a list of released games and modifications!] Demos/Add-Ons/Beta Testing www.v3arcade.com Download the v3 Arcade (1.0.3) here: Show Your Support
|
Comments |
#3552
|
||||
|
||||
Quote:
|
#3553
|
||||
|
||||
They will remain as will all scores, play counters, etc.
Only do the file edits, though. |
#3554
|
||||
|
||||
i ran into the blank page problem, but i had made a test site, and just added each arcade_ template,, acording to the isntall it did instlal them, but in the styles& templates, they didn't show up ?? any ideas why that happen ? i've isntalled this ona few skins and a few test sites and never ran into this problem,, and looking though this thread i seen other ppl withthat problem, anyways, to fix it i just added each templates manually, and all works great,, maybe you can include a file that a user who runsinto this can look at to transfer the templete files over,,hope soem of this makes sinse, its getting alittle late for me, and i've had a few drinks :-"..lol anyways thx for the mods, its awsome and the add-ons are sweet
|
#3555
|
|||
|
|||
How do i install new games? .. where would i place the game php file?
|
#3556
|
|||
|
|||
Quote:
Code:
PHP Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in myISP\LPSForum\arcade.php on line 1664 This one: Code:
Invalid SQL: SELECT user.avatarid, user.avatarrevision, avatarpath, NOT ISNULL(avatardata) AS hascustom, customavatar.dateline FROM vb3_user AS user LEFT JOIN vb3_avatar AS avatar ON avatar.avatarid = user.avatarid LEFT JOIN vb3_customavatar AS customavatar ON customavatar.userid = user.userid WHERE user.userid = and This one: Code:
Invalid SQL: SELECT gamesessions.*,user.username FROM vb3_gamesessions AS gamesessions LEFT JOIN vb3_user AS user ON gamesessions.userid = user.userid WHERE vb3_gamesessions.valid=1 AND gamesessions.sessiontype IN (1,2) ORDER BY gamesessions.finish DESC LIMIT 0,1 mysql error: Unknown table 'vb3_gamesessions' in where clause mysql error number: 1109 Any help is greatly appreicated. Robin |
#3557
|
||||
|
||||
Can you post the lines from just before the fix as applied to a few lines after?
|
#3558
|
|||
|
|||
Quote:
if Code:
($userid==0) { print_no_permission(); } $user = $DB_site->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid=$userid"); if ($user['username']=="") { $idname = $vbphrase['user']; eval(print_standard_error('error_invalidid')); } $activitycount = $DB_site->query(" SELECT gamesessions.*, games.title FROM " . TABLE_PREFIX . "gamesessions AS gamesessions LEFT JOIN " . TABLE_PREFIX . "games AS games ON gamesessions.gamename = games.shortname WHERE userid=$userid AND valid=1 AND $sessionclause GROUP BY sessionid ORDER BY finish DESC"); $played = $DB_site->num_rows($activitycount); $i = 1; |
#3559
|
||||
|
||||
Quote:
Quote:
As for your second MySQL error, is your 'vb3_gamesessions' table in your database? Is that the right table name? |
#3560
|
|||
|
|||
Quote:
Code:
if ($userid==0) { print_no_permission(); } $user = $DB_site->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid=$userid"); if ($user['username']=="") |
#3561
|
||||
|
||||
I just went to your arcade. I clicked on a few names, scores, etc., but cannot get an error. What are the users doing or clicking on when they get the error? Did you get the PHP error after putting in the fix I posted? Have you tried taking it out if that is the case?
It may be at the point of needing to see your arcade.php to do much more. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|