The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
v3 Arcade - Professional vBulletin Gaming Details »» | |||||||||||||||||||||||||||||||||||||||||||||
v3 Arcade is now a member of the vBadvanced family!
http://www.vbadvanced.com/forum/showthread.php?t=47571 The support forums & data from v3Arcade.com have been merged into the vBadvanced.com site. ================================= v3 Arcade for vBulletin ================================= *** IMPORTANT *** Version 2.0.0 has introduced a number of changes to the various file names, phrases, templates, etcetera. If you are using any 3rd party hacks/add-ons then they may need to be updated. Feel free to check over at v3Arcade.com with any questions you might have before upgrading. "v3 Arcade" is the premiere arcade system written specifically for vBulletin. It's coded from scratch - not a port of an older version - and because it was coded specifically for vBulletin it uses the product system for code modifications & utilizes AJAX technology throughout. Here's a brief rundown of the features in this version of v3 Arcade.
Branding Free ================================= All v3 Arcade installations carry and require a small "v3 Arcade" logo in the footer, as well as the text "Powered by v3 Arcade" which links to http:www.v3arcade.com. For information on legally removing the branding, please visit www.v3arcade.com. ================================= www.v3arcade.com ================================= If you're looking for more games, add-ons, support, tutorials, or anything Arcade related - www.v3arcade.com is the place to go. ================================= Copyright ================================= All code & images distributed in this zip is Copyright ?2009 CinVin, with the following exceptions:
Misc. ================================================================== Add-Ons =================================
Many thanks to... =================================
Change Log ================================= For the complete change log, please click here. The change log is getting too big to include inline with this thread. Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
Comments |
#752
|
||||
|
||||
FYI: For those using this arcade mod with vBcredits, there is an update for the latest version of vBcredits....
https://vborg.vbsupport.ru/showthread.php?t=245482 |
#753
|
||||
|
||||
I am getting reports from several members and I have also tested this but when you play a mochi game withing vb arcade the scores are not being updated. This only started to happen after I upgraded to the latest version of vb arcade... how can I fix this issue?
|
#754
|
||||
|
||||
<a href="http://www.v3arcade.com/forums/showthread.php?t=3361" target="_blank">http://www.v3arcade.com/forums/showthread.php?t=3361</a>
|
#755
|
|||
|
|||
Can someone please help with a single game issue that I have? I have spent the last hour reading all these pages. But I didn't seem to find anyone else with the same issue.
The issue I am having is when the game ends. Instead my score being submitted and being taken to the high score page I am redirected to the main index page. All the other games work perfectly and none of my other games do this. It's just this one particular game that I am having the issue with and I would very much like to get it working properly on the forum. The game plays perfectly. It's just that when the game is over I am re directed to the forums index page. I'm assuming that there is something inside the game .swf file that needs changing? Such as where it redirects the player to when the game is over. If so what needs to be edited or changed? Any assistance as to how I can fix this would be greatly appreciated. Thanks. |
#756
|
|||
|
|||
Any help on this? Before I try installing the oppositions gaming system and get it running with that?
Thanks. |
#757
|
||||
|
||||
Does your game happen to be an IBPro game and is your main index page happen to be VBadvanced? If so there is some code to be added to the index.php page I can find if you need it.
|
#758
|
||||
|
||||
Well in any case, in case it can help someone else, the code is:
Code:
if ($_REQUEST['do'] == 'newscore' AND $_REQUEST['act'] == 'Arcade') { require_once(DIR . '/includes/v3arcade_functions.php'); // Clean values $vbulletin->input->clean_array_gpc('p', array( 'gscore' => TYPE_NOHTML, 'gname' => TYPE_STR )); if (!$game = $db->query_first(" SELECT * FROM " . TABLE_PREFIX . "v3arcade_games WHERE shortname = '" . $db->escape_string($vbulletin->GPC['gname']) . "' ") ) { exit; } // Create a session record. $db->query_write(" INSERT INTO " . TABLE_PREFIX . "v3arcade_sessions (gameid, gamename, userid, start, sessiontype, challengeid, score, finish) VALUES ( $game[gameid], '" . $db->escape_string($vbulletin->GPC['gname']) . "', '" . $vbulletin->userinfo['userid'] . "', '" . TIMENOW . "', 1, " . ($vbulletin->userinfo['challengecache'] ? $vbulletin->userinfo['challengecache'] : 0) . ", '" . $db->escape_string($vbulletin->GPC['gscore']) . "', '" . TIMENOW . "' )"); // Fetch the ID number of the session we just inserted. $lastid = $db->insert_id(); header('Location: arcade.php?sessdo=burn&id=' . $lastid . 'µone=' . getmicrotime()); exit; } if ($_REQUEST['do'] == 'verifyscore' AND $_REQUEST['autocom'] == 'arcade') { // Get two random numbers to do our score verification $randomvar1 = rand(1, 25); $randomvar2 = rand(1, 25); // Bake a Cookie vbsetcookie('v3arcade_v32_cookie', $randomvar1 . ',' . $randomvar2, permanent); // Return the values echo '&randchar=' . $randomvar1 . '&randchar2=' . $randomvar2 . '&savescore=1&blah=OK'; exit(); } if ($_REQUEST['do'] == 'savescore' AND $_REQUEST['autocom'] == 'arcade') { require_once(DIR . '/includes/v3arcade_functions.php'); $vbulletin->input->clean_array_gpc('p', array( 'gscore' => TYPE_NOHTML, 'arcadegid' => TYPE_NUM, 'enscore' => TYPE_NUM, 'gname' => TYPE_STR )); // Get a cookie from the jar $randomvars = explode(',', $_COOKIE[COOKIE_PREFIX . 'v3arcade_v32_cookie']); // If the checksum values do not match, display an error to the user. if( $vbulletin->GPC['enscore'] != ($vbulletin->GPC['gscore'] * $randomvars[0] ^ $randomvars[1])) { print_no_permission(); } // Check to see game name is one file if(!$game = $db->query_first(" SELECT * FROM " . TABLE_PREFIX . "v3arcade_games WHERE shortname = '" . $db->escape_string($vbulletin->GPC['gname']) . "' ") ) { exit; } // Create a session record. $db->query_write(" INSERT INTO " . TABLE_PREFIX . "v3arcade_sessions (gameid, gamename, userid, start, sessiontype, challengeid, score, finish) VALUES ( $game[gameid], '" . $db->escape_string($vbulletin->GPC['gname']) . "', '" . $vbulletin->userinfo['userid'] . "', '" . TIMENOW . "', 1, " . ($vbulletin->userinfo['challengecache'] ? $vbulletin->userinfo['challengecache'] : 0) . ", '" . $db->escape_string($vbulletin->GPC['gscore']) . "', '" . TIMENOW . "' )"); // Fetch the ID number of the session we just inserted. $lastid = $db->insert_id(); header('Location: arcade.php?sessdo=burn&id=' . $lastid . 'µone=' . getmicrotime()); // Clear the cookie values vbsetcookie('v3arcade_v32_cookie', ''); exit; } Code:
print_portal_output($home); |
#759
|
||||
|
||||
I am having issues where when members are playing MochiAds games that the scores are not being recorded Only certain games are recording a score.
|
#760
|
||||
|
||||
You are aware many MochiMedia games do not keep high scores by design? You must limit yourself to 'leadernoard enabled' games when looking for games, and even some of them don't save scores.
|
#761
|
|||
|
|||
Has anyone got both arcades working on one board?
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|