vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - v3 Arcade - Professional vBulletin Gaming (vB4) (https://vborg.vbsupport.ru/showthread.php?t=253211)

LLent 03-30-2012 03:58 PM

Quote:

Originally Posted by Gemma (Post 2315069)
Can you try this - http://www.vbadvanced.com/forum/showthread.php?t=47744

Someone else had that problem but never got back to me about whether it solved the problem or not.


well Gemma that fixed the issue all is good now ...thanks very much

Nirjonadda 03-30-2012 04:50 PM

1 Attachment(s)
Enable Arcade Awards in Postbit...show multi-color crowns its not working...onely show Game Title....how i can fix it?
Where upload the crossdomain ? And what does it do?

Attachment 137463

Hostboard 03-30-2012 05:30 PM

Previously noted...

Quote:

Originally Posted by Gemma (Post 2306144)
For Mochi games to submit scores you will need to place the crossdomain.xml in your site root; not your forum root. Also, you will need to make sure games are leaderboard enabled games so that scores can be submitted.


Gemma 03-31-2012 12:06 PM

Quote:

Originally Posted by Nirjonadda (Post 2315100)
Enable Arcade Awards in Postbit...show multi-color crowns its not working...onely show Game Title....how i can fix it?
Where upload the crossdomain ? And what does it do?

Attachment 137463

From the shot you've posted I'm guessing that is the content when hovering over the multi-crown icon. Can you post a screenshot of your full postbit?

Upload the crossdomain.xml to your site root (not forum root or any other subfolder) - it should be www.yourdomain.com/crossdomain.xml

The crossdomain.xml is need if you wish to use Mochi games - if you don't upload it as mentioned above your scores will not save. If you have no plans to use Mochi games then you don't need to upload it.

Nirjonadda 03-31-2012 01:32 PM

1 Attachment(s)
Quote:

Originally Posted by Gemma (Post 2315363)
From the shot you've posted I'm guessing that is the content when hovering over the multi-crown icon. Can you post a screenshot of your full postbit?

Upload the crossdomain.xml to your site root (not forum root or any other subfolder) - it should be www.yourdomain.com/crossdomain.xml

The crossdomain.xml is need if you wish to use Mochi games - if you don't upload it as mentioned above your scores will not save. If you have no plans to use Mochi games then you don't need to upload it.

only problem for multi-crown icon...it's not display correctly .

Attachment 137475

Gemma 03-31-2012 01:41 PM

I see what you mean, it is when Show All Awards In Postbit is selected too. I'll see if I can find a solution.

jaykilgore 03-31-2012 08:59 PM

Super easy install! The last time I tried to install a vbgame it took a few days and still didn't work. I planned the whole day out to install this, three minutes later I was figuring out what to do with the rest of my day!

My question? Is there a way to get more games?

Gemma 03-31-2012 09:55 PM

Quote:

Originally Posted by jaykilgore (Post 2315504)
Super easy install! The last time I tried to install a vbgame it took a few days and still didn't work. I planned the whole day out to install this, three minutes later I was figuring out what to do with the rest of my day!

My question? Is there a way to get more games?

It is against vbulletin.org site rules to post direct links to arcade game download sites but you'll find a plethora of sites by typing ibproarcade games into any search engine.

Also, you can use games from mochimedia.com - if you go down that route you will need to setup a Mochi account and add some details to your v3 Arcade settings. There is a guide on how to do this here - http://www.vbadvanced.com/forum/showthread.php?t=46531

jaykilgore 04-01-2012 01:46 AM

Thank you,

I was able to add a few games from the ibproarcade site. I like it better than the spam on the other site.

But now I've run into a problem, when I make a new record from a newly uploaded game, I get a

PHP Code:

Your submission could not be processed because a security token was missing.

If 
this occurred unexpectedlyplease inform the administrator and describe the action you performed before you received this error

I've put the fix

PHP Code:

// ibProArcade
if($_POST['module'] == "pnFlashGames")
{
    require_once(
'./global.php');

    switch(
$_POST['func'])
    {
        case 
"storeScore":
        
$_GET['act'] = "Arcade";
        
$_GET['module'] = "arcade";
        
$_GET['do'] = "pnFStoreScore";
        break;

        case 
"saveGame":
        
$_GET['do'] = "pnFSaveGame";
        break;

        case 
"loadGame":
        
$_GET['do'] = "pnFLoadGame";
        break;

        case 
"loadGameScores":
        
$gid $vbulletin->input->clean_gpc('p''gid'TYPE_INT);
        
$uid$vbulletin->userinfo['userid'];
        
$game $db->query_first("SELECT * FROM " TABLE_PREFIX "games_scores WHERE mid=$uid AND gid = $gid ORDER BY score DESC LIMIT 0,1");
        
$scores $game[score];

        if(
$scores != false)
        {
            
//Return true
            
print "&opSuccess=true&gameScores=$scores&endvar=1"//send endvar to keep opSuccess separate from all other output from PostNuke
        
}
        else
        {
            print 
"&opSuccess=false&error=Error&endvar=1";
        }
        break;
    }
}

$act $_GET[act];
$autocom $_GET[autocom];
$showuser$_GET[showuser];
if(
$act == "Arcade" || $autocom=="arcade") {
include 
"arcade.php";
exit();
}
if(!empty(
$showuser) && $showuser >= 1) {
$u $showuser;
$_GET[u] = $showuser;
include 
"member.php";
exit();
}

// end of ibProArcade 

Both after the <?php and after the
http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| ################################################## ################## ||
\*================================================ ======================*/

And when that happens, it gives me a white page.

Gemma 04-01-2012 09:51 AM

Quote:

Originally Posted by jaykilgore (Post 2315576)
Thank you,

I was able to add a few games from the ibproarcade site. I like it better than the spam on the other site.

But now I've run into a problem, when I make a new record from a newly uploaded game, I get a

PHP Code:

Your submission could not be processed because a security token was missing.

If 
this occurred unexpectedlyplease inform the administrator and describe the action you performed before you received this error

I've put the fix

PHP Code:

// ibProArcade
if($_POST['module'] == "pnFlashGames")
{
    require_once(
'./global.php');

    switch(
$_POST['func'])
    {
        case 
"storeScore":
        
$_GET['act'] = "Arcade";
        
$_GET['module'] = "arcade";
        
$_GET['do'] = "pnFStoreScore";
        break;

        case 
"saveGame":
        
$_GET['do'] = "pnFSaveGame";
        break;

        case 
"loadGame":
        
$_GET['do'] = "pnFLoadGame";
        break;

        case 
"loadGameScores":
        
$gid $vbulletin->input->clean_gpc('p''gid'TYPE_INT);
        
$uid$vbulletin->userinfo['userid'];
        
$game $db->query_first("SELECT * FROM " TABLE_PREFIX "games_scores WHERE mid=$uid AND gid = $gid ORDER BY score DESC LIMIT 0,1");
        
$scores $game[score];

        if(
$scores != false)
        {
            
//Return true
            
print "&opSuccess=true&gameScores=$scores&endvar=1"//send endvar to keep opSuccess separate from all other output from PostNuke
        
}
        else
        {
            print 
"&opSuccess=false&error=Error&endvar=1";
        }
        break;
    }
}

$act $_GET[act];
$autocom $_GET[autocom];
$showuser$_GET[showuser];
if(
$act == "Arcade" || $autocom=="arcade") {
include 
"arcade.php";
exit();
}
if(!empty(
$showuser) && $showuser >= 1) {
$u $showuser;
$_GET[u] = $showuser;
include 
"member.php";
exit();
}

// end of ibProArcade 

Both after the <?php and after the
http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| ################################################## ################## ||
\*================================================ ======================*/

And when that happens, it gives me a white page.

Don't use that code, that is for one of the other arcade systems.

If you run either vBAdvanced CMPS or vBulletin Suite CMS then you will need to make a small edit to your index.php file, details in this post - https://vborg.vbsupport.ru/showpost....&postcount=469

If you don't have a portal or you do the edit and scores still don't submit, send me a link to your site and I'll check it out. Also it could be that I need to update one of your files.

Gemma 04-01-2012 10:52 AM

Quote:

Originally Posted by Nirjonadda (Post 2315378)
only problem for multi-crown icon...it's not display correctly .

Attachment 137475

Go to AdminCP > v3 Arcade > Maintenance > Rebuild Awards & High Score Cache > Click 'Start'

The multi-crowns should appear in postbit after running this.

Nirjonadda 04-01-2012 11:11 AM

Quote:

Originally Posted by Gemma (Post 2315681)
Go to AdminCP > v3 Arcade > Maintenance > Rebuild Awards & High Score Cache > Click 'Start'

The multi-crowns should appear in postbit after running this.

problem solved its working now....Gemma thanks for your best support !!!

jaykilgore 04-01-2012 02:09 PM

Quote:

Originally Posted by Gemma (Post 2227311)
If IPB Scores Are Not Saving With vBulletin CMS

Open index.php and do the following edit.

Find:
Code:

require('content.php');
Add above:
Code:

require_once('./includes/v3arcade_vbsuite_index_compatibility.php');
Save and upload. Close all of your browsers and restart.

IPB Scores Not Saving With vBadvanced CMPS
For those who are using vBadvanced CMPS and are using it in the same folder as vBulletin and are using the vBa CMPS script as their 'index.php' file instead of the default 'index.php' file

Look for.
Code:

require_once('./global.php');
and immediately *AFTER* it add:
Code:

require_once('./includes/v3arcade_vbsuite_index_compatibility.php');
Save and upload. Close all of your browsers and restart.

Worked like a charm!

stilly 04-01-2012 09:47 PM

New install, works great. Do have a styling issue though, not sure if it is vb4 or arcade issue, user avatars at the home arcade page are huge and overlap to the right. Checked the size in vb user options, seems fine. Something I can set in the arcade? What should I look for?

Gemma 04-01-2012 10:12 PM

Quote:

Originally Posted by stilly (Post 2315864)
New install, works great. Do have a styling issue though, not sure if it is vb4 or arcade issue, user avatars at the home arcade page are huge and overlap to the right. Checked the size in vb user options, seems fine. Something I can set in the arcade? What should I look for?

https://vborg.vbsupport.ru/showpost....2&postcount=47

stilly 04-02-2012 12:13 AM

Quote:

Originally Posted by Gemma (Post 2315869)

Thank ya, that it. Cheers.

stilly 04-04-2012 03:19 AM

Many of my users are experiencing this when trying to save games. Seems most are ipb games imported. I am only using forum classic, not suite (CMS) at 4.1.11 so not sure the index.php edit should be an issue.

vBulletin Message
you do not have permission to access this page. This could be due to one of several reasons:
1.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?
2.If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

User group perms seem fine. All true.

Not sure what to check for now, as admin cant duplicate, with a test account as regged, could only duplicate once when adding a comment, but all perms are set to true.

Timeout is set for 15 minutes, had it set to 30, no difference.

All ipb games have game data files in forum/arcade/gamedata

?????

Gemma 04-04-2012 04:51 AM

Quote:

Originally Posted by stilly (Post 2316593)
Many of my users are experiencing this when trying to save games. Seems most are ipb games imported. I am only using forum classic, not suite (CMS) at 4.1.11 so not sure the index.php edit should be an issue.

vBulletin Message
you do not have permission to access this page. This could be due to one of several reasons:
1.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?
2.If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

User group perms seem fine. All true.

Not sure what to check for now, as admin cant duplicate, with a test account as regged, could only duplicate once when adding a comment, but all perms are set to true.

Timeout is set for 15 minutes, had it set to 30, no difference.

All ipb games have game data files in forum/arcade/gamedata

?????

Can you PM me a link to your site and a test account login details/password? (just standard doesn't need to be admin or anything).

Gemma 04-08-2012 06:59 PM

Been testing this out on the upcoming vBulletin release (4.1.12). Works without any problems. Only thing I would remind people of doing is re-applying the edit to your index.php if you are running either vBulletin CMS or vBAdvanced CMPS once you upgrade so that scores for IPB games continue to submit

https://vborg.vbsupport.ru/showpost....&postcount=469

Gemma 04-08-2012 07:00 PM

Quote:

Originally Posted by stilly (Post 2316593)
Many of my users are experiencing this when trying to save games. Seems most are ipb games imported. I am only using forum classic, not suite (CMS) at 4.1.11 so not sure the index.php edit should be an issue.

vBulletin Message
you do not have permission to access this page. This could be due to one of several reasons:
1.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?
2.If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

User group perms seem fine. All true.

Not sure what to check for now, as admin cant duplicate, with a test account as regged, could only duplicate once when adding a comment, but all perms are set to true.

Timeout is set for 15 minutes, had it set to 30, no difference.

All ipb games have game data files in forum/arcade/gamedata

?????

Should be fixed :)

Skivey 04-08-2012 10:22 PM

installed onto 4.1.11 with absolutely no problems at all. Was installed and set up on about 5 minutes.

Thanks

stilly 04-08-2012 11:19 PM

Quote:

Originally Posted by Gemma (Post 2318113)
Should be fixed :)

Indeed, thank ya very much :up:

Datenpapst 04-17-2012 09:50 AM

Quote:

Originally Posted by Gemma (Post 2119125)

link not working - anyone got the real deal?

Datenpapst 04-17-2012 10:27 AM

Quote:

Originally Posted by Gemma (Post 2293453)
There you go

https://vborg.vbsupport.ru/showpost....&postcount=469

Also, in the German versions of CMS you may have to place it above require(INDEX_SCRIPT); if there is no require('content.php'); so it looks like

Code:

require_once('./includes/v3arcade_vbsuite_index_compatibility.php');
require(INDEX_SCRIPT);


found it thx!

doubleclick 04-22-2012 11:51 AM

I just installed the latest version of this, and it looks great so far.

However, when I set games to "inactive", they still show up! How do I correct this?

Thanks,
bw

Gemma 04-22-2012 01:36 PM

Quote:

Originally Posted by doubleclick (Post 2322461)
I just installed the latest version of this, and it looks great so far.

However, when I set games to "inactive", they still show up! How do I correct this?


Thanks,
bw

You should be able to see and play the game as an administrator (useful for testing purposes) but regular users shouldn't see or have access to the game, even if they have the game url it should show an 'Invalid Game Specified' message when trying to access it.

Jamie107 04-22-2012 04:11 PM

reverse scoring turned on by default? do I have to manually edit each games settings
running on vb 4.1.12 forum

doubleclick 04-22-2012 04:30 PM

Thanks Gemma. I still haven't opened it up to anyone but myself while I set things up, and didn't think to look as a non-admin.

Gemma 04-22-2012 04:43 PM

Quote:

Originally Posted by Jamie107 (Post 2322511)
reverse scoring turned on by default? do I have to manually edit each games settings
running on vb 4.1.12 forum

This should fix your problem.

http://www.vbadvanced.com/forum/show...04&postcount=2

doubleclick 04-23-2012 10:01 AM

Gamma -

Do you know when their site will be back up? All weekend it has been

Error 503 : Service Temporarily Unavailable

Gemma 04-23-2012 10:57 AM

Quote:

Originally Posted by doubleclick (Post 2322683)
Gamma -

Do you know when their site will be back up? All weekend it has been

Error 503 : Service Temporarily Unavailable

Which site is down?

doubleclick 04-23-2012 11:59 AM

http://www.vbadvanced.com/

that is the site one is directed to from http://www.v3arcade.com/

Gemma 04-23-2012 01:12 PM

Dunno, I've not had any problems accessing vBAdvanced today or over the weekend.

Hippy 04-23-2012 09:12 PM

vbadvanced is good for me as well .... weird

doubleclick 04-24-2012 07:45 AM

I got it sorted out with Brian. They had installed a new anti-spam firewall, and somehow had rated my ip as nefarious.

I feel so dirty . . .

doubleclick 04-24-2012 03:08 PM

Is it possible to show new tournaments, new scores, new games, etc. above the forum directory?

Gemma 04-24-2012 10:52 PM

Quote:

Originally Posted by doubleclick (Post 2323108)
Is it possible to show new tournaments, new scores, new games, etc. above the forum directory?

What sort of information would you want displayed for tournaments?

For scores, new games etc have you tried the v3 Arcade Stats widget, it has also been developed to be used as a forum sideblock - https://vborg.vbsupport.ru/showthread.php?t=261177

doubleclick 04-28-2012 12:07 PM

Hi Gemma -

It would be nice to have Active Tournaments, and Tournaments Awaiting Players to show up, each in their own block with the forum css.

I just looked at the widget you're talking about. It says "A widget for users of vB4 Suite". Are you saying I can use this on a website that isn't based on the Suite?

Gemma 04-28-2012 04:55 PM

Quote:

Originally Posted by doubleclick (Post 2324287)
I just looked at the widget you're talking about. It says "A widget for users of vB4 Suite". Are you saying I can use this on a website that isn't based on the Suite?

There is instructions on how to adapt it to be a forum sideblock - not sure if that is something you could use or not? You can see an example @ www.forumbanter.com/forum.php

I'll look at the tournament options and maybe see if I can come up with anything :)

doubleclick 04-30-2012 01:24 AM

Nice site, Gemma! When I get some time, I'll have to come back and play over there. Pretty darned fancy to have it adapt to different monitor resolutions!

What I'm wanting to do is to show stuff *outside* of the forum directory. For example, let's say my arcade is in mydomain.com/forum/arcade.php

I want to be able to break the info I mentioned out of the forum folder and put things in other parts of the site that aren't in the vb folder to draw people in. Places like

mydomain.com/index.php or mydomain.com/otherstuff/index.htm

In a perfect world, there would be one global plugin or product that would allow all vbulletin goodies to roam free outside of the vbulletin directory. However, that doesn't seem likely, but I've seen a few mods here and there that allow interesting info to be displayed outside the "fence" of the vbulletin directory, and was hoping the v3arcade had some.


All times are GMT. The time now is 08:29 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02366 seconds
  • Memory Usage 1,900KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (4)bbcode_php_printable
  • (21)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete