Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
v3 Arcade - Games Arcade & Challenge System [vB 3.0.3] Details »»
v3 Arcade - Games Arcade & Challenge System [vB 3.0.3]
Version: 1.00, by John John is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.0.3 Rating:
Released: 01-17-2004 Last Update: 08-25-2004 Installs: 1745
 
No support by the author.

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

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2687  
Old 09-01-2004, 04:42 AM
Darax The Good Darax The Good is offline
 
Join Date: Jan 2003
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ogden2k
Any suggestions on my post? Anyone who figures it out will get a Gmail invite.
Code:
STEP 2.
=======
Open your arcade_main template. At the bottom, add this on a new line (not
including the dotted lines!):
----------------------------------------------------------------------------

<br />
$pagenav

----------------------------------------------------------------------------

I just had to go through the same thing
Reply With Quote
  #2688  
Old 09-02-2004, 07:06 AM
Rahzel_hx Rahzel_hx is offline
 
Join Date: Aug 2004
Location: Everett,Washington
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hmm is there anyway where i can show the arcade news and events on another page (aka portal >_<) if you goto arcade.php it is on top right side
Reply With Quote
  #2689  
Old 09-02-2004, 08:16 AM
Pseudomizer's Avatar
Pseudomizer Pseudomizer is offline
 
Join Date: Mar 2002
Location: Germany
Posts: 614
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Rahzel_hx
hmm is there anyway where i can show the arcade news and events on another page (aka portal >_<) if you goto arcade.php it is on top right side
Take this code for your portal:

PHP Code:
// ############## PROCESS Game News #######################################

$gameevents $DB_site->query("select * from gamenews order by datestamp DESC limit 5");

if (
$DB_site->num_rows($gameevents))
{
                while (
$gameev $DB_site->fetch_array($gameevents))
                {
             
$new_date vbdate('d.m.Y'$gameev['datestamp'], falsefalse);
             
$gamenews .= "<B>".$new_date."</B><BR>";
             
$gamenews .= $gameev['newstext']."<BR>";
        }

Create a template and put in $gamenews. Enjoy it.

Cheers,
Reply With Quote
  #2690  
Old 09-02-2004, 02:23 PM
Trekkie Trekkie is offline
 
Join Date: Apr 2002
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

when i install i get

Parse error: parse error, unexpected T_STRING in /var/www/html/admincp/install_arcade.php on line 706

anyone have an idea ?
Reply With Quote
  #2691  
Old 09-02-2004, 04:24 PM
Rahzel_hx Rahzel_hx is offline
 
Join Date: Aug 2004
Location: Everett,Washington
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Pseudomizer
Take this code for your portal:

PHP Code:
// ############## PROCESS Game News #######################################

$gameevents $DB_site->query("select * from gamenews order by datestamp DESC limit 5");

if (
$DB_site->num_rows($gameevents))
{
                while (
$gameev $DB_site->fetch_array($gameevents))
                {
             
$new_date vbdate('d.m.Y'$gameev['datestamp'], falsefalse);
             
$gamenews .= "<B>".$new_date."</B><BR>";
             
$gamenews .= $gameev['newstext']."<BR>";
        }

Create a template and put in $gamenews. Enjoy it.

Cheers,
Umm where do i put thte code in for the portal i tryed the index.php and it doesn't do anything (portal by vBadvanced CMPS v1.0.) I made the templet and nothing shows up in it
Reply With Quote
  #2692  
Old 09-04-2004, 01:53 AM
devilsmania devilsmania is offline
 
Join Date: Nov 2001
Location: Rome, Italy
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi there

great hack

but i got a problem, and i've been searching here and there (with search yes!) and didnt find anything.

the problem is :

i installed some games, and the News & Event didnt update anymore with latest scores

all the rest works great ( i've even uninstalled the last game i added )

thanks in advance :ermm:
Reply With Quote
  #2693  
Old 09-04-2004, 05:09 AM
venomx's Avatar
venomx venomx is offline
 
Join Date: Apr 2002
Location: Pennsylvania USA
Posts: 441
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Whats netPlay?
Reply With Quote
  #2694  
Old 09-07-2004, 12:49 AM
venomx's Avatar
venomx venomx is offline
 
Join Date: Apr 2002
Location: Pennsylvania USA
Posts: 441
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I know netplay allows 2 members to play each other.. what I meant is.. if I turn it on do I need anything else for it to work?
Reply With Quote
  #2695  
Old 09-07-2004, 02:10 AM
rinkrat's Avatar
rinkrat rinkrat is offline
 
Join Date: Jan 2002
Location: Long Beach
Posts: 530
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's there for future development and not part of the hack yet.
Reply With Quote
  #2696  
Old 09-07-2004, 02:15 AM
venomx's Avatar
venomx venomx is offline
 
Join Date: Apr 2002
Location: Pennsylvania USA
Posts: 441
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So can two members play each other right now as is?
Reply With Quote
  #2697  
Old 09-07-2004, 12:21 PM
Wordplay Wordplay is offline
 
Join Date: Nov 2001
Location: Dengoku
Posts: 864
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tried installing this hack and got this problem:

Code:
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /.../includes/init.php on line 517
and if i go straight to the install_arcade.php it says:
Code:
Parse error: parse error, unexpected T_STRING in /.../install_arcade.php on line 706
anybody know where i could have gone wrong?

I'm running 3.0.3 and well my admin dir has a differnt title then the original "admincp" dir... could that be a problem?
Reply With Quote
  #2698  
Old 09-07-2004, 12:27 PM
Wordplay Wordplay is offline
 
Join Date: Nov 2001
Location: Dengoku
Posts: 864
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Trekkie
when i install i get

Parse error: parse error, unexpected T_STRING in /var/www/html/admincp/install_arcade.php on line 706

anyone have an idea ?
yeah i got the same problem.
Reply With Quote
  #2699  
Old 09-07-2004, 06:08 PM
Trekkie Trekkie is offline
 
Join Date: Apr 2002
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i fixed it
check Line 706

there are wrong code

replace it with

<if condition="$show[popups]">

same line without the "`"

thats all
Reply With Quote
  #2700  
Old 09-07-2004, 08:27 PM
stryka stryka is offline
 
Join Date: Aug 2002
Posts: 201
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just downloaded latest v3arcade for my vb3.03...

but can someone help me troubleshoot why the scores and stats are not being saved ? NOthing is being recorded? Any suggestions on where i should look?

Plus my helicopter game from SEETHRU messes up after the first crash??? Didn't hang up during testing...
Reply With Quote
  #2701  
Old 09-07-2004, 10:32 PM
Reverend Reverend is offline
 
Join Date: Mar 2002
Location: England
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Flawless install. :up:
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:36 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07042 seconds
  • Memory Usage 2,374KB
  • Queries Executed 30 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_code
  • (2)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)pagenav_pagelinkrel
  • (16)post_thanks_box
  • (16)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (16)post_thanks_postbit_info
  • (15)postbit
  • (16)postbit_onlinestatus
  • (16)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete