The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
[DBTech] vBArcade v2 (vB5) Details »» | |||||||||||||||||||||||||||||||||||
vBArcade is a professional modular flash arcade game system. Easily converts your old favorites, and finds thousands more with the click of a button.
This new modern arcade uses AJAX to enhance the playing experience and encourage users to compete both locally and globally among participating sites. Streamlined import and editing managers put games from mochi, v3arcade, ibproarcade and more into your arcade with ease. Fine-tuned access and scoring tools allow you to keep competition fresh and exciting, as well as social network tools to bring new users in to your site! ------------------------------------------------------------------------------------------- If you like this mod please hit the button to the right ----> Please remember to click the, button to the right if you installed the mod ----> What does 'Marking As Installed' do ? * It helps you to stay on top of updates - members who have installed modifications will be notified by us whenever new updates are available. * For security issues - vbulletin.org will contact all members who have installed a modification whenever a security issue is brought to their attention. * Marking a modification as installed also helps us know how many people are using our work, giving us extra incentive to provide more features and new modifications. We appreciate the support! ------------------------------------------------------------------------------------------- Documentation https://www.dragonbyte-tech.com/docs/vbarcade ------------------------------------------------------------------------------------------- Major Features: Modular Game Handling: Currently supports games from pnflash, ibproarcade, v3arcade, mochi, (plus armor, kongregate, flashgamedistribution, spilgames in pro) and more can be added with a single file. Access and Score Tools: Set exactly when users can play certain games, and for how often. Archive extra or old scores to allow room for new champions. Social and Global: Not only can games be sent to all the major social networks, but participating sites can rank their scores together and display champions everywhere. Beautiful Modern Design: Streamlined and professional, using AJAX to enhance and simplify the playing experience, like searching, replays, full screen and cinema mode, and category tabs. Fast Paced Competition: Ultimate tournament system that rewards fast players while mitigating no-shows, allowing all your matches to finish strong, and everyone has fun. Lite Friendly Challenges
"Most Trophies" Module
"Longest Players" Module
"You Might Like" Module
Global Scoring Integration
Commenting
Score Alerts
Score Tracking
General / Other
Additional Features (Pro) Tournaments
Tournament Matches
Group
Knockout
Score Alerts
Category Passwords
General / Other
Features Still Missing (Lite) General / Other
This mod displays a copyright notification in the footer of all pages which includes:
Download Now
Screenshots
Show Your Support
|
Благодарность от: | ||
Comments |
#132
|
|||
|
|||
I assume this is dead now? No clue where to get the HTML5 games spoke of. I assume they install the same as the old flash games used to? Anyone have a link where to download the HTML5 games from or already have that can be purchased maybe?
|
#133
|
||||
|
||||
Try here for games: https://next-level-arcade.com/forum.php
The owner is very cool, and you can download both flash and html 5 games. The problem with this mod in it's current state is that first, the scoring doesn't work. but Stannger from the above website helped get it working. There are still other issues, but it is possible to get this working on latest version of vb5. |
#134
|
|||
|
|||
You might be able to get some of these to work.
https://www.edopedia.com/blog/open-s...ascript-games/ They are all Open Source. |
#135
|
|||
|
|||
Hi Guys
tried to install this and it fails on and traced error to Code:
CREATE TABLE IF NOT EXISTS `dbtech_vbarcade_favorite` ( `gameid` varchar(255) NOT NULL, `userid` int(10) unsigned NOT NULL DEFAULT '0', `timestamp` int(10) unsigned NOT NULL DEFAULT '0', UNIQUE KEY `gameid` (`gameid`,`userid`) ) ENGINE=MyISAM Code:
#1071 - Specified key was too long; max key length is 1000 bytes The code in 100.php Code:
self::$db->query_write(" CREATE TABLE IF NOT EXISTS `" . TABLE_PREFIX . "dbtech_vbarcade_favorite` ( `gameid` varchar(255) NOT NULL, `userid` int(10) unsigned NOT NULL DEFAULT '0', `timestamp` int(10) unsigned NOT NULL DEFAULT '0', UNIQUE KEY `gameid` (`gameid`,`userid`) ) ENGINE=MyISAM "); self::report('Created Table', 'dbtech_vbarcade_favorite'); Code:
Exception trace: ## phar:///var/www/core/vb/vb.phar/database.php(1204) Exception Thrown #0 phar:///var/www/core/vb/vb.phar/database/mysqli.php(236): vB_Database->halt() #1 phar:///var/www/core/vb/vb.phar/database.php(587): vB_Database_MySQLi->execute_query() #2 /var/www/vhosts/core/packages/dbtechvbarcade/install/100.php(71): vB_Database->query_write() #3 /var/www/vhosts/core/packages/dbtechvbarcade/class_install.php(120): require_once('/var/www/vhosts...') #4 /var/www/vhosts/core/includes/adminfunctions_product.php(947) : eval()'d code(2): DBTech_Install::install() #5 /var/www/vhosts/core/includes/adminfunctions_product.php(947): eval() #6 /var/www/vhosts/core/admincp/product.php(1215): install_product() #7 /var/www/vhosts/includes/api/interface/collapsed.php(147): require_once('/var/www/vhosts...') #8 /var/www/vhosts/includes/vb5/frontend/controller/relay.php(33): Api_Interface_Collapsed->relay() #9 /var/www/vhosts/index.php(69): vB5_Frontend_Controller_Relay->admincp() #10 {main} |
#136
|
|||
|
|||
has anyone solved the Arcade install error at all yet?
|
#137
|
|||
|
|||
SO GOT THE DATABSE RUNNING AND INSTALLED FOR V5.7.5 JUST HAVING FEW FRONT END ISSUES BUT HOPE FULL GET THERE
HERE IS THE DATABASE CODE USED I CHANGED IN CORE/PACKAGES/INSTALL/100.PHP JUST COPY AND PAST IN TEXT FILE SAY AS 100.PHP UPLOAD AND RUN Code:
<?php // New Tables self::$db->query_write(" CREATE TABLE IF NOT EXISTS `dbtech_vbarcade_access` ( `accessid` int(10) unsigned NOT NULL AUTO_INCREMENT, `enabled` tinyint(1) unsigned NOT NULL DEFAULT '1', `usergroups` text NOT NULL, `games` text NOT NULL, `displayorder` int(10) unsigned NOT NULL DEFAULT '10', `important` tinyint(1) unsigned NOT NULL DEFAULT '0', `default` tinyint(1) unsigned NOT NULL DEFAULT '0', `timespan` int(10) unsigned NOT NULL DEFAULT '0', `mintime` int(10) unsigned NOT NULL DEFAULT '0', `minposts` int(10) unsigned NOT NULL DEFAULT '0', `avgposts` double unsigned NOT NULL DEFAULT '0', `lastposts` int(10) unsigned NOT NULL DEFAULT '0', `minrep` int(10) unsigned NOT NULL DEFAULT '0', `earned` tinyint(1) unsigned NOT NULL DEFAULT '0', `maxplays` int(10) unsigned NOT NULL DEFAULT '0', `punish` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`accessid`) ) ENGINE=MyISAM "); self::report('Created Table', 'dbtech_vbarcade_access'); self::$db->query_write(" CREATE TABLE IF NOT EXISTS `dbtech_vbarcade_category` ( `categoryid` int(10) unsigned NOT NULL AUTO_INCREMENT, `enabled` tinyint(1) unsigned NOT NULL DEFAULT '1', `title` varchar(255) NOT NULL, `displayorder` int(10) unsigned NOT NULL DEFAULT '10', `password` varchar(255) NOT NULL DEFAULT '', `usergroups` text NOT NULL, `icon` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, PRIMARY KEY (`categoryid`) ) ENGINE=MyISAM "); self::report('Created Table', 'dbtech_vbarcade_category'); self::$db->query_write(" CREATE TABLE IF NOT EXISTS `dbtech_vbarcade_data` ( `gameid` varchar(255) NOT NULL, `local_winner` int(10) unsigned NOT NULL DEFAULT '0', `global_user` varchar(255) NOT NULL DEFAULT '', `global_link` varchar(255) NOT NULL DEFAULT '', `global_score` double NOT NULL DEFAULT '0', `local_plays` int(10) unsigned NOT NULL DEFAULT '0', `local_avgscore` double NOT NULL DEFAULT '0', `local_timespent` int(10) unsigned NOT NULL DEFAULT '0', `global_plays` int(10) unsigned NOT NULL DEFAULT '0', `global_avgscore` double NOT NULL DEFAULT '0', `global_timespent` int(10) unsigned NOT NULL DEFAULT '0', `ratings` int(10) unsigned NOT NULL DEFAULT '0', `avgrating` double unsigned NOT NULL DEFAULT '0', `favorites` int(10) unsigned NOT NULL DEFAULT '0', `comments` int(10) unsigned NOT NULL DEFAULT '0', `history_winner` int(10) unsigned NOT NULL DEFAULT '0', `commentthreadid` int(10) unsigned NOT NULL DEFAULT '0', `reportthreadid` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`gameid`) ) ENGINE=InnoDB "); self::report('Created Table', 'dbtech_vbarcade_data'); self::$db->query_write(" CREATE TABLE IF NOT EXISTS `dbtech_vbarcade_favorite` ( `gameid` varchar(255) NOT NULL, `userid` int(10) unsigned NOT NULL DEFAULT '0', `timestamp` int(10) unsigned NOT NULL DEFAULT '0', UNIQUE KEY `gameid` (`gameid`,`userid`) ) ENGINE=MyISAM "); self::report('Created Table', 'dbtech_vbarcade_favorite'); self::$db->query_write(" CREATE TABLE IF NOT EXISTS `dbtech_vbarcade_game` ( `gameid` varchar(255) NOT NULL, `enabled` tinyint(1) unsigned NOT NULL DEFAULT '1', `displayorder` int(10) unsigned NOT NULL DEFAULT '10', `title` varchar(255) NOT NULL, `description` text NOT NULL, `instruction` text NOT NULL, `controls` text NOT NULL, `keywords` text NOT NULL, `author` varchar(255) NOT NULL DEFAULT '', `copyright` varchar(255) NOT NULL DEFAULT '', `timestamp` int(10) unsigned NOT NULL DEFAULT '0', `width` double unsigned NOT NULL, `height` double unsigned NOT NULL, `decimals` tinyint(2) NOT NULL DEFAULT '0', `scoring` tinyint(1) unsigned NOT NULL DEFAULT '1', `tourns` tinyint(1) unsigned NOT NULL DEFAULT '1', `system` char(3) NOT NULL, `license` text NOT NULL, `flashfile` varchar(255) NOT NULL, `icon` varchar(255) NOT NULL, `badge` varchar(255) NOT NULL, PRIMARY KEY (`gameid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; "); self::report('Created Table', 'dbtech_vbarcade_game'); self::$db->query_write(" CREATE TABLE `dbtech_vbarcade_match` ( `matchid` int(10) unsigned NOT NULL AUTO_INCREMENT, `tournid` int(10) unsigned NOT NULL DEFAULT '0', `userid` int(10) unsigned NOT NULL DEFAULT '0', `against` int(10) unsigned NOT NULL DEFAULT '0', `score` double NOT NULL DEFAULT '0', `timestamp` int(10) unsigned NOT NULL DEFAULT '0', `round` tinyint(2) unsigned NOT NULL DEFAULT '1', `attempt` tinyint(2) unsigned NOT NULL DEFAULT '0', `status` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`matchid`) ) ENGINE=MyISAM "); self::report('Created Table', 'dbtech_vbarcade_match'); self::$db->query_write(" CREATE TABLE IF NOT EXISTS `dbtech_vbarcade_rating` ( `gameid` varchar(255) NOT NULL, `userid` int(10) unsigned NOT NULL DEFAULT '0', `timestamp` int(10) unsigned NOT NULL DEFAULT '0', `rating` tinyint(1) unsigned NOT NULL DEFAULT '0', UNIQUE KEY `gameid` (`gameid`,`userid`) ) ENGINE=MyISAM "); self::report('Created Table', 'dbtech_vbarcade_rating'); self::$db->query_write(" CREATE TABLE IF NOT EXISTS `dbtech_vbarcade_relation` ( `gameid` varchar(255) NOT NULL, `categoryid` int(10) unsigned NOT NULL DEFAULT '0', UNIQUE KEY `gameid` (`gameid`,`categoryid`) ) ENGINE=MyISAM "); self::report('Created Table', 'dbtech_vbarcade_relation'); self::$db->query_write(" CREATE TABLE IF NOT EXISTS `dbtech_vbarcade_session` ( `sessionid` int(10) unsigned NOT NULL AUTO_INCREMENT, `global` int(10) unsigned NOT NULL DEFAULT '0', `gameid` varchar(255) NOT NULL, `label` varchar(255) NOT NULL DEFAULT '', `userid` int(10) unsigned NOT NULL DEFAULT '0', `ipaddress` char(15) NOT NULL DEFAULT '', `timestart` int(10) unsigned NOT NULL DEFAULT '0', `timefinish` int(10) unsigned NOT NULL DEFAULT '0', `status` tinyint(1) unsigned NOT NULL DEFAULT '0', `record` tinyint(1) unsigned NOT NULL DEFAULT '0', `score` double NOT NULL DEFAULT '0', `verify` varchar(255) NOT NULL, `chain` varchar(255) NOT NULL DEFAULT '', `comment` varchar(255) NOT NULL DEFAULT '', `matchid` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`sessionid`) ) ENGINE=InnoDB "); self::report('Created Table', 'dbtech_vbarcade_session'); self::$db->query_write(" CREATE TABLE IF NOT EXISTS `dbtech_vbarcade_tourn` ( `tournid` int(10) unsigned NOT NULL AUTO_INCREMENT, `gameid` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `description` text NOT NULL, `timestamp` int(10) unsigned NOT NULL DEFAULT '0', `recurring` tinyint(1) unsigned NOT NULL DEFAULT '0', `private` tinyint(1) unsigned NOT NULL DEFAULT '0', `usergroups` text NOT NULL, `status` tinyint(1) unsigned NOT NULL DEFAULT '0', `winner` int(10) unsigned NOT NULL DEFAULT '0', `rounds` tinyint(2) unsigned NOT NULL DEFAULT '1', `attempts` tinyint(2) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`tournid`) ) ENGINE=MyISAM "); self::report('Created Table', 'dbtech_vbarcade_tourn'); // Populate tables self::$db->query_write(" REPLACE INTO `dbtech_vbarcade_access` (`accessid`, `enabled`, `usergroups`, `games`, `displayorder`, `important`, `default`, `timespan`, `mintime`, `minposts`, `avgposts`, `lastposts`, `minrep`, `earned`, `maxplays`, `punish`) VALUES (1, 1, '', '', 10, 0, 4, 86400, 0, 0, 0, 0, 0, 4, 0, 3) "); self::report('Populated Table', 'dbtech_vbarcade_access'); self::$db->query_write(" INSERT INTO `dbtech_vbarcade_category` (`categoryid`, `enabled`, `title`, `displayorder`, `password`, `usergroups`) VALUES (1, 1, 'Puzzle', 10, '', ''), (2, 1, 'Action', 10, '', ''), (3, 1, 'Retro', 10, '', ''), (4, 1, 'Sports', 10, '', ''), (5, 1, 'Shooter', 10, '', ''), (6, 1, 'RPG', 10, '', ''), (7, 1, 'Misc', 10, '', '') "); self::report('Populated Table', 'dbtech_vbarcade_access'); // Add the administrator field if (self::$db_alter->fetch_table_info('administrator')) { self::$db_alter->add_field(array( 'name' => 'arcadepermissions', 'type' => 'int', 'length' => '10', 'attributes' => 'unsigned', 'null' => false, // True = NULL, false = NOT NULL 'default' => '0' )); self::report('Altered Table', 'administrator'); } // Add the user field if (self::$db_alter->fetch_table_info('user')) { self::$db_alter->add_field(array( 'name' => 'dbtech_vbarcade_matchcount', 'type' => 'int', 'length' => '10', 'attributes' => 'unsigned', 'null' => false, // True = NULL, false = NOT NULL 'default' => '0' )); self::report('Altered Table', 'user'); } |
Благодарность от: | ||
jeremystcyr69 |
#138
|
|||
|
|||
Which file did you use on here with this fix, as i am still seeing errors.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|