View Full Version : Add-On Releases - v3 Arcade - Professional vBulletin Gaming
MagicThemeParks
06-29-2010, 01:30 AM
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
bada_bing
06-30-2010, 08:17 PM
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?
odln018
06-30-2010, 08:39 PM
<a href="http://www.v3arcade.com/forums/showthread.php?t=3361" target="_blank">http://www.v3arcade.com/forums/showthread.php?t=3361</a>
CybaGirl
07-04-2010, 06:47 AM
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.
CybaGirl
07-16-2010, 01:09 AM
Any help on this? Before I try installing the oppositions gaming system and get it running with that?
Thanks.
BirdOPrey5
07-16-2010, 03:28 AM
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.
BirdOPrey5
07-16-2010, 03:33 AM
Well in any case, in case it can help someone else, the code is:
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;
}
You put the code in your index.php file, assuming you are running vbadvanced, right above the last line of code:
print_portal_output($home);
This solved my issues with some games reverting back to the main index page after playing.
bada_bing
07-16-2010, 07:58 PM
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.
BirdOPrey5
07-16-2010, 08:24 PM
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.
RobbieZ
07-16-2010, 10:36 PM
Has anyone got both arcades working on one board?
KW802
07-23-2010, 10:07 PM
In brief (forgive me if miss anybody, just give a shout if I did)...
- v3A 2.0.3 for vB3 has been released. If you're are using Mochi games you'll want to grab this update. Make sure you also update your crossdomain.xml file on your server. Until I have a chance to update the first post here, please download the latest version from v3A (http://www.v3arcade.com/).
- v3A 2.0.0 for vB4 has been released as Gold. :) We'll be posting it here at some point but for now you can grab it at v3A.
- @odln018: No, but that is not a bad idea. Mind posting that over at v3A in the 'suggestions' forum so I can talk it over with Brian (the v3A Lead Developer)?
- @CybaGirl: As BOP5 mentioned, if you're using something other than the default index.php as your home page then you'll do some minor edits. If you are using vBa CMPS as your home page named index.php in the same folder as vB, then please see these instructions at v3A (http://www.v3arcade.com/forums/showthread.php?t=3099).
- @BirdOPrey5: The latest versions is much easier! :D Now it's just a one line change. :)
- @Bada Bing: As BOP5 mentioned, only "Leaderboard" games will save scores. There could be other factors at work also (eg: missing setting in the ACP or missing crossdomain.xml file or the user is using ad blocking software).
- @RobbieZ: I know a few of the regulars in the v3A forums have done but am not aware if any of them have written up explicit instructions on how to do it. The one big obstacle you're going to run into is IPB games; if you install them to both arcade systems then which one is supposed to record the score.
CybaGirl
07-25-2010, 11:45 AM
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.
Hello and thank you for getting back to me and for your help. Sorry for the late reply as I have been rather busy of late and have not had time to look into this further.
Not to sure about the game being a IBPro game but it probably is. I found it somewhere in a pack. Do you mind explaining to me what you mean by VBadvanced?
Where can I find this index.php?
As our forum has http://www.the.name.of.our.forum.com/forum.php as the main index page. Then when you go to the arcade section it looks like this.
http://www.the.name.of.our.forum.com/arcade.php
So any assistance here would be much appreciated.
Plus we are running vBulletin v4.0.3 and v3_arcade_for_vbulletin_2_0_0_rc2_(vb4)_28316
Thanks for help once again.
BirdOPrey5
07-25-2010, 01:04 PM
what page comes up if you go to http://www.the.name.of.our.forum.com/index.php ?
vBadvanced is a specific content management system that makes an index.php page (usually) that provides 'boxes' of useful info to make a nice 'homepage.' It is its own mod and you'd probably know if you had it. However you have vB4 so i'm not sure how the pages work for you, hopefully KW802 can shed more light on your situation.
KW802
07-25-2010, 10:44 PM
@CybaGirl: If you PM me the URL of your site, I can take a look a look to see what setup you're using. If it is a NSFW site, no problem, I'll just need to take a look after hours instead of during the day.
stangger5
07-25-2010, 10:49 PM
Has anyone got both arcades working on one board?
v3 and ibp on the same site ?? Yes I do ;)
Mattysstars
07-26-2010, 11:32 AM
I Got an error
from what i can gather I'm missing files in what i downloaded im not sure help
----
Here is the error's
Warning: require_once([path]/includes/v3arcade_class_db_analyse.php) [function.require-once]: failed to open stream: No such file or directory in [path]/admincp/plugin.php(1995) : eval()'d code on line 878
Fatal error: require_once() [function.require]: Failed opening required '/home/habchat1/public_html/habboholiday.com/board/upload/includes/v3arcade_class_db_analyse.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/habchat1/public_html/habboholiday.com/board/upload/admincp/plugin.php(1995) : eval()'d code on line 878
----
says I'm missing a file? but in the ones i downloaded its not their o.O
KW802
07-26-2010, 02:09 PM
@Mattysstars: Are you sure you uploaded all of the files to your server and imported the product XML file? Sounds like at a minimum you missed uploading some of the files in the zip to your server.
StilgarSinople
07-26-2010, 03:33 PM
Hello everyone, i'm searching for an help to install v3 arcade on vb4 with custom style (the help I get was for vb3...)
Thanks in advance !
KW802
07-26-2010, 04:04 PM
Hello everyone, i'm searching for an help to install v3 arcade on vb4 with custom style (the help I get was for vb3...)
Thanks in advance !
StilgarSinpople, please download the vB4 version of v3A from v3Arcade.com (http://www.v3arcade.com) (we haven't posted the vB4 version here yet).
v3A will use your existing vB style so you shouldn't have to do anything to get it to match your design unless you're trying to do some unique changes to the actual v3A templates. Until we get v3A for vB4 posted here, please feel free to post in the v3A vB4 support forums (http://www.v3arcade.com/forums/forumdisplay.php?f=46).
StilgarSinople
07-26-2010, 04:17 PM
Ah ok, I downloaded it from a french board, I'm going to fix it soon !
Thanks a lot !
Kila_Bite
08-10-2010, 05:48 PM
Firsty KW802, thank you so much for this modification. It's a brilliant add on for our forums and our users love it.
I seem to be having some real issues mass importing games. We're running VB 3.8.6 PL1. The following folders are CHMOD 0777:
/admincp/games
/games
/images/arcade
If I've got this correct I need to do the following: Download V3 games, extract them and upload the entire contents of the extracted file to admincp/games.
Once complete in the admincp I need to browse to V3 Arcade >>> Import Games. once here I use the V3 Arcade mass Game Import and I specify the path admincp/games.
In theory the system should pick up any games I've uploaded to admincp/games. it doesn't, instead I get an error message stating "There are no more games to import."
I've looked on google and looked in the php files themselves but unfortunately my understanding is limited. I have reinstalled the arcade system twice including by re-uploading the files.
Nothing at all has worked so far.
Again, really appreciate this brilliant hack and any advice you can give on where I could be going wrong would be appreciated.
Thanks in advance.
Edit: Clearly you're no longer supporting the system. Sorry to take up your time, I'll look for something else.
fxwoody
08-18-2010, 04:10 PM
Well i tried to import some games and got this error message on my side! I'm running the 3.8.6 also :(
Any one with some info about it?
nando99
08-20-2010, 03:08 PM
I'm using the 2.0.0 (vB3) v3 Arcade Stats Module for vBAdvanced CMPS found here (http://www.v3arcade.com/forums/showthread.php?t=3002) and I'm having some problems.
I had this installed for a while and it worked fine. I moved the module from 1 side to another and now i'm getting the following error:
Fatal error: Call to a member function do_parse() on a non-object in /home/xwnet/public_html/pts1/modules/arcadestats.php on line 141
any and all help is appreciated... thanks
(I posted over there with no response, hoping some1 can help me here.)
lubbie
09-14-2010, 06:25 PM
Thanks for the new Update. Im loving it ;)
ComoEstaEso-com
09-14-2010, 07:16 PM
Thanks for the new Update. Im loving it ;)
x2!
Very nice! :D
Eduardo Leon
09-14-2010, 07:25 PM
yeah .
great work
thnx
KW802
09-14-2010, 10:16 PM
Checking in.... :)
@Everybody: If you are using Mochi, be sure to grab the 2.0.3 update from v3Arcade.com; didn't realize I haven't updated the version here yet. If you are using vBulletin 4, we have just released v3A 2.0.1 for vBulletin 4 earlier today. :cool:
@Kila Bite: The primary place for support is at v3Arcade.com; support is provided here as time permits. The next time I refresh the first post I will make that more clear.
@Nando99: I must've missed that one. Please PM a link to the thread at v3A or bump the thread so it catches my attention.
@lubbie, @ComoEstaEso-com, @Leothefox: You guys/gals must've gotten the email. :D Glad to hear the new version is working out.
onealien
09-15-2010, 12:28 PM
Ok..installed and working great as far as i can tell so far....thanks...
I need help with my custom styles tho...the "arcade" link is not showing up in the navbar...
the only place im seeing it is in my vbulletin default style...
can someone help me locate the code and place to insert it on the other 2 custom styles?
thank you...
KW802
09-15-2010, 03:19 PM
Ok..installed and working great as far as i can tell so far....thanks...
I need help with my custom styles tho...the "arcade" link is not showing up in the navbar...
the only place im seeing it is in my vbulletin default style...
can someone help me locate the code and place to insert it on the other 2 custom styles?
thank you...
To insert the automatic navbar link it relies upon the "navbar_buttons_{location}" template hook in the "navbar" template.
In your custom style's "navbar" template, make sure these lines are present in there...
$template_hook[navbar_buttons_left]
$template_hook[navbar_buttons_right]
If you need help, just let me know.
LangeSeyst
09-15-2010, 08:24 PM
Thnx man! Great mod. My users love it.
Just one question: how doe i get other/new (free) games from v3Arcade.com installed on our forum?
We use VB 3.8.6 and v3Arcade 2.0.2. Thnx!
KW802
09-15-2010, 08:43 PM
Thnx man! Great mod. My users love it.
Just one question: how doe i get other/new (free) games from v3Arcade.com installed on our forum?
We use VB 3.8.6 and v3Arcade 2.0.2. Thnx!
For downloading the sample games from v3A, try this FAQ (http://www.v3arcade.com/forums/showthread.php?t=3490) first and then going to the sample games area (http://www.v3arcade.com/forums/games.php).
Since v3A is compatible with v3A games, IPB games, and Mochi games (http://www.v3arcade.com/forums/showthread.php?t=1934) you can find thousands of games on the net. Personally I prefer Mochi games because they help bring in a little bit of revenue (not a whole lot, mind you, but anything helps to offset the server costs). For the Mochi games, be sure to grab a copy of 2.0.3 from v3A first as some tweaks were done between 2.0.2 and 2.0.3 for saving Mochi scores.
KW802
09-16-2010, 06:45 PM
I'm using the 2.0.0 (vB3) v3 Arcade Stats Module for vBAdvanced CMPS found here (http://www.v3arcade.com/forums/showthread.php?t=3002) and I'm having some problems....@Nando99: I must've missed that one. Please PM a link to the thread at v3A or bump the thread so it catches my attention.
Nando99, check here: :)
http://www.v3arcade.com/forums/showthread.php?t=3502
onealien
09-16-2010, 09:31 PM
thanks for the help...
works great even tho i had to add some things to my custom styles due to nav bar buttons located actually in header...
awesome mod tho...will start to load more games soon!
Neal-UK
09-21-2010, 01:41 PM
Any estimated release date for the arcade for vB4?
ComoEstaEso-com
09-21-2010, 06:28 PM
Any estimated release date for the arcade for vB4?
It's already out.
The name is still v3 Arcade, yet it is for vB 4.
I have it running at the moment (v3 Arcade + vB4.0.7).
Download it! :)
KW802
09-21-2010, 07:31 PM
Any estimated release date for the arcade for vB4?
It's already out.
The name is still v3 Arcade, yet it is for vB 4.
I have it running at the moment (v3 Arcade + vB4.0.7).
Download it! :)
Yep, it's been available for a while now at v3Arcade.com (http://www.v3arcade.com). With the recent v3A 2.0.1 for vB4 it really polishes off running an Arcade on vB4 and the feedback so far has been great.
Neal-UK
09-21-2010, 07:45 PM
That's great, thanks guys.
cad2go
09-27-2010, 03:48 PM
Fantastic mod.
This thread is archived and doesn't allow downloads https://vborg.vbsupport.ru/showthread.php?t=60666 :(
I would LOVE to get pacman from that thread or this:https://vborg.vbsupport.ru/showthread.php?t=114664 (first post) but not sure what I should do...
I have to extract it then make it into a tar and upload then use the inbuilt iB "Pro" Arcade - Mass Game Import?:confused: So I'll need tar.:erm:
MissKalunji
10-19-2010, 01:30 AM
Everythin gwent smoothly! from installing, importing my IBP data. Perfectr! thank you!
OldSchoolDSL
10-25-2010, 02:25 AM
Working good on 4.0.8
Although he / she does not seem to update things here, but more so on their own site v3Arcade.com
Paul M
10-31-2010, 05:34 PM
The Can Override Permission Checks phrase seems to be in the wrong phrase category.
cungchuctanxuan
11-01-2010, 12:28 AM
After importing the product, I get this :
Importing Product, Please Wait...
[:]
Warning: require_once([path]/includes/v3arcade_class_db_analyse.php) [function.require-once]: failed to open stream: No such file or directory in [path]\admincp\plugin.php(1995) : eval()'d code on line 878
Fatal error: require_once() [function.require]: Failed opening required 'D:\Hosting\6872448\html/includes/v3arcade_class_db_analyse.php' (include_path='.;C:\php5\pear') in D:\Hosting\6872448\html\admincp\plugin.php(1995) : eval()'d code on line 878
KW802
11-01-2010, 01:03 AM
For those running vB4, if you've upgraded to vB 4.0.8 be sure to grab a copy of v3 Arcade 2.0.3 for vBulletin 4 from v3Arcade.com as that will fix the problems with the profile tabs and also contains a bug fix.
The Can Override Permission Checks phrase seems to be in the wrong phrase category.*Should* be fixed in vB 2.0.3 (just updated the zip file in the first post) unless I goofed again (by updating the phrase on my dev' copy but not refreshing the product XML).
After importing the product, I get this :
Are you sure you uploaded all of the files to your vBulletin folder first? The XML file should only be imported after all of the files have been uploaded.
msorin
11-01-2010, 02:51 AM
I just installed the latest version and now I'm getting an error at the top:
Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: v3arcade_tournaments_forumhome in [path]/includes/functions.php on line 4007
Any idea how to fix this?
KW802
11-01-2010, 03:05 AM
I just installed the latest version and now I'm getting an error at the top:
Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: v3arcade_tournaments_forumhome in [path]/includes/functions.php on line 4007
Any idea how to fix this?
What version of vBulletin are you using?
msorin
11-01-2010, 12:42 PM
I'm running VB 4.0.8
KW802
11-01-2010, 02:31 PM
For those running vB4, if you've upgraded to vB 4.0.8 be sure to grab a copy of v3 Arcade 2.0.3 for vBulletin 4 from v3Arcade.com as that will fix the problems with the profile tabs and also contains a bug fix.
*Should* be fixed in vB 2.0.3 (just updated the zip file in the first post) unless I goofed again (by updating the phrase on my dev' copy but not refreshing the product XML).
Are you sure you uploaded all of the files to your vBulletin folder first? The XML file should only be imported after all of the files have been uploaded.
I'm running VB 4.0.8
msorin, please download the vB4 version directly from v3Arcade.com (http://www.v3arcade.com) (not released yet here at vB.org). Because of the differences between vB3 & vB4 there are seperate versions of v3 Arcade that were designed for each version of vBulletin. The code, templates, & features vary between the two v3A versions.
KW802
11-05-2010, 06:24 PM
We've released the vB4 version here!
https://vborg.vbsupport.ru/showthread.php?t=253211
stledger
05-24-2011, 03:06 PM
Going to test it out :)
KW802
06-09-2011, 02:12 PM
vB3 users... if you are using Mochi games and if your Mochi "Leaderboard" enabled games that you have installed recently are not saving their scores, then please see the link below for a patch that needs to be applied...
http://www.v3arcade.com/forums/showthread.php?t=3890
We will update the attachment here with the patch in the next few days...
dizzynation
06-12-2011, 12:33 AM
Ok so now to get this for 3.8 i have to go to another site and register?
BirdOPrey5
06-12-2011, 12:34 AM
Ok so now to get this for 3.8 i have to go to another site and register?
You don't _HAVE_ to but it will help.
KW802
06-12-2011, 02:40 AM
Ok so now to get this for 3.8 i have to go to another site and register?
:confused: Download the attachment in the first post here. If you are planning on using Mochi games, then do the patch mentioned above until if/when we update the 3.8 code.
dizzynation
06-12-2011, 06:29 AM
:confused: Download the attachment in the first post here. If you are planning on using Mochi games, then do the patch mentioned above until if/when we update the 3.8 code.
There is a problem with the download.
BirdOPrey5
06-12-2011, 10:50 AM
There is a problem with the download.
Maybe try another browser... It just downloaded fine for me. What problem are you having? Corrupted file? Download doesn't start?
dizzynation
06-12-2011, 08:35 PM
Maybe try another browser... It just downloaded fine for me. What problem are you having? Corrupted file? Download doesn't start?
It downloads, (sorry) but to unzip it say "decompression has failed".
I have been downloading other mods and this is the first that says it.
Thanks for your time
BirdOPrey5
06-12-2011, 09:05 PM
OK well I confirmed it downloaded and unzipped for me. Have you tried downloading it again? If possible can you try downloading with a different browser?
Max Taxable
06-14-2011, 11:45 AM
Installed this yesterday. Zero problems, everything looks and works great. This is a sweet hack and I really appreciate it. It's the ONLY one where I am happy to have the branding, because it is well deserved.
My only problem is, I can't seem to find the place on vBulletin Arcade where I can license my installation, perchance to download more games. I read through this thread, didn't find anyone else asking about this.
Suggestions?
dizzynation
06-15-2011, 07:28 PM
OK well I confirmed it downloaded and unzipped for me. Have you tried downloading it again? If possible can you try downloading with a different browser?
tried on new browser, safari and and now firefox.
Downloaded then get "unable to unarchive" "ERROR 1"
Looks like ill have to pass i guess,
BirdOPrey5
06-15-2011, 07:47 PM
Very weird. Are you able to download other mods from this site?
Scyther
06-20-2011, 04:34 AM
I uploaded the files and unzipped them on forum root directory successfully,
But after importing product-v3arcade.xm from Admin cp, it says Importing product please wait and doesn't respond, how long does it take to import it?
KW802
06-21-2011, 02:24 AM
I uploaded the files and unzipped them on forum root directory successfully,
But after importing product-v3arcade.xm from Admin cp, it says Importing product please wait and doesn't respond, how long does it take to import it?
Shouldn't take very long at all since it is just updating a few tables.
Did you get any error messages or other strange things?
Scyther
06-21-2011, 01:32 PM
Shouldn't take very long at all since it is just updating a few tables.
Did you get any error messages or other strange things?
No error...just plain screen and message : Importing product : please wait and it stays there and does nothing.
Scyther
06-21-2011, 06:34 PM
No error...just plain screen and message : Importing product : please wait and it stays there and does nothing.
I tried something else and it worked..
Thanks..
Installed successfully
Max Taxable
07-01-2011, 09:23 PM
Please see my private message I sent you, KW.
dizzynation
07-01-2011, 09:57 PM
I tried something else and it worked..
Thanks..
Installed successfully
What did you try different, im still having problems, maybe if i try downloading with firefox instead of safari
Chase
09-08-2011, 09:33 PM
I have version 1.0.7 installed on my forums right now. If I upgrade to this version will I lose my games I have installed?
Any special steps I need to take beforehand?
Chase
09-12-2011, 09:44 PM
bump
HMBeaty
09-12-2011, 10:08 PM
I have version 1.0.7 installed on my forums right now. If I upgrade to this version will I lose my games I have installed?
Any special steps I need to take beforehand?
bump
No, you won't lose your games
dizzynation
09-16-2011, 06:01 AM
Very weird. Are you able to download other mods from this site?
Yes, i have downloaded many without an issue, but ill try again and let everyone know if it works
ofir24
10-22-2011, 05:19 PM
working on vb 4.1.7?
BirdOPrey5
10-22-2011, 05:26 PM
VB 4.x version: https://vborg.vbsupport.ru/showthread.php?t=253211
aranthorn
11-25-2011, 10:11 PM
If anyone else seems to be having the same trouble, i worked out the query.
In your phpmyadmin, it will already be showing as zero, but running this query will make all games be HIGHEST SCORE WINS.
UPDATE vb_v3arcade_games SET isreverse=1
Make sure you rename the vb_ , to your own table prefix.
Weird. I had that issue, but had to run the query =0 which is backwards, but it worked. Maybe because I switches from ibproarcade and imported all the games.
KW802
02-07-2012, 08:59 PM
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.
team76
02-26-2012, 11:15 AM
How to show at the top of the arcade, Everything those who play in arcade , and has which game?
for Vb 4
bklynjava
08-03-2012, 02:28 PM
Works fine on 3.8.0...
infnity8x3
09-25-2012, 07:59 PM
Hello all, I have a problem with my install. I converted from IBP to v3 now on the leaderboard all the game dates are from 1969. I have found posts refering to fixes but they are dead ends as http://www.v3arcade.com is no longer and a script fix on http://www.vbadvanced.com/forum/showthread.php?t=46880 is no longer in the attachment.
Gemma
09-25-2012, 10:23 PM
Hello all, I have a problem with my install. I converted from IBP to v3 now on the leaderboard all the game dates are from 1969. I have found posts refering to fixes but they are dead ends as http://www.v3arcade.com is no longer and a script fix on http://www.vbadvanced.com/forum/showthread.php?t=46880 is no longer in the attachment.
I got Kevin to post the file over on vB Advanced.
Just run the file ie http://www.yoursite.com/sk_leaderboardfix.php
That should fix your date problem.
infnity8x3
09-25-2012, 10:37 PM
Thank you it worked :)
And for all the ppl getting the
Warning: Invalid argument supplied for foreach() in [path]/includes/v3arcade_functions.php on line 203
error in leaderboard I fixed it by turning off the Display Award Images option in v3arcade leaderboard settings in the acp
Chase
12-21-2012, 08:41 PM
Im getting errors on your plugin.
PHP version: 5.3.2
vBulletin version: 3.8.5
Error:
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 55
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 107
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 111
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 119
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 130
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 134
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 142
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 211
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 389
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/class_core.php on line 2552
This displays at the very top of the page.
I also get this message where the arcade should view:
Any ideas?
In reply to my own post, I've now fixed the issue.
I simply editted:
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
To:
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE & ~8192);
Seems to have fixed the issue.
The problem appears to be PHP 5.3.x as I just started having the same problem here (as well as with my other plug-ins)
Can anyone tell me which file needs to be edited? Dan left that part out.
Chase
12-26-2012, 04:27 PM
bump... any idea here?
BirdOPrey5
12-26-2012, 04:46 PM
On each line of each file in the error message you posted you need to remove the & by the =.
Save backups just in case.
Chase
12-26-2012, 09:59 PM
On each line of each file in the error message you posted you need to remove the & by the =.
Save backups just in case.
Thanks for the reply...
The only & sign I saw next or near an = sign was on line 2552 on the class_core file
I did not see any & sign on the posted lines in the init file.
BirdOPrey5
12-27-2012, 03:23 PM
Was there an & at all?
Like &$something ?
I don't have the VB 3.8.5 files to check against. Maybe post line 55 from init.php (just the 1 line) and I will see what is going on.
Lucyloo
12-28-2012, 10:01 AM
I wondered if someone could help me please? One of our members keeps getting this error message while playing in the Arcade.
you do not have permission to access this page. This could be due to one of several reasons:
Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
Chase
12-29-2012, 04:27 PM
Was there an & at all?
Like &$something ?
I don't have the VB 3.8.5 files to check against. Maybe post line 55 from init.php (just the 1 line) and I will see what is going on.
line 55 from init.php (vB 3.8.7 PL3)
$vbulletin = new vB_Registry();
ravenscape
01-03-2013, 04:43 PM
We upgraded our php version yesterday and v3arcade started throwing deprecation errors.
Changing one line of code fixed the problem.
in arcade.php change
error_reporting(E_ALL & ~E_NOTICE);
to
error_reporting(E_ALL & ~E_NOTICE & ~8192);
juan71287
10-12-2013, 09:58 AM
any ideas why?
http://prntscr.com/1wt405
PsychoModz
10-12-2013, 02:46 PM
any ideas why?
http://prntscr.com/1wt405
Did you upload the /forums/admincp/v3arcade_admin.php to your /admincp/ directory, so it gives you /admincp/v3arcade_admin.php? Do not upload the /forums/ directory itself, only the files and directories inside /forums/.
juan71287
10-14-2013, 01:47 AM
Fixed. Thanks :)
juan71287
10-14-2013, 03:27 AM
I talked too soon :/
Fatal error: Call to a member function read() on a non-object in /home/site1/public_html/3538forus/v3arcade_admin.php on line 1280
And another one..
Database error in vBulletin 3.8.7:
Invalid SQL:
SELECT COUNT(games.highscorerid) AS total, user.username,user.usergroupid, user.userid
FROM arcade_games AS games
LEFT JOIN user AS user ON (user.userid = games.highscorerid)
WHERE user.userid IS NOT NULL
GROUP BY user.username, user.userid
ORDER BY total DESC, user.userid ASC
LIMIT 3;
MySQL Error : Table 'crackin1_cfdb123.arcade_games' doesn't exist
Error Number : 1146
Request Date : Monday, October 14th 2013 @ 04:33:00 AM
Error Date : Monday, October 14th 2013 @ 04:33:01 AM
Script : http://www.axaxa.com/index.php
Referrer : http://www.axaxa.com/Admin/index.php?do=head
IP Address : 186.6.18.154
Username : Axaxa
Classname : vB_Database
MySQL Version : 5.5.32-cll
Note i changed sitename..
Disabled v3 Arcade Champs on Forum Home and the SQL is gone and site loads ok. But the 1st error remains.. Fixes?
TropicalFanta
11-12-2013, 12:57 PM
I doubt anyone is still around to support this mod but here goes!
I'm getting the standard error when trying to browse Mochi games - XML Error: no element found at Line 0.
I've followed the FAQ for a fix - user permissions, allow_furl_open and mod_security and still nothing. I even read up that it could just be a firefox browser error, but alas none of the above has helped.
Does anyone have another idea I could try? I've even been on Mochi and added games to the download list and tried to do it manually, says their installed but nothing actually gets installed.
Any help would be fantastic!!!
mito22
11-07-2015, 03:31 PM
Hi guys...... just a problem....
After installation I don't see the ARCADE in navbar.... the clickable word.... Solution?
mito22
11-07-2015, 03:51 PM
Solved.. ;)
mito22
10-06-2016, 10:26 AM
Where can I found some games for VB3? in 2016?
blind-eddie
10-07-2016, 01:09 AM
Wrong arcade to install,
search above for Arcade, All versions, title only. You will see ibproarcade for vb4, it is also for vb3.8.
Check out my arcade, filled with edits by stangger5 and over 20,000 games with many more to install.
stangger5
10-16-2016, 08:46 PM
Where can I found some games for VB3? in 2016?
There`s a few good places.. ;)
Try Google: ibproarcade games download free
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.