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)
-   -   Major Additions - ibProArcade - professional Arcade System (https://vborg.vbsupport.ru/showthread.php?t=101554)

Hippy 02-10-2011 01:01 AM

Quote:

Originally Posted by Amiga Harrison (Post 2160520)
I'm sad to say I've finally given up on this arcade. I'd been running it successfully on my forums since 2006, but since upgrading to vB4 it just hasn't worked well and I've never been able to get the hiscores to save since vB4, regardless of what I've tried.

It was becoming a bit of a joke that a supposedly supported product hasn't been updated since Dec 2009!

I've therefore switched over to v3 Arcade, and all I can say is its a real eye opener and I wish I had switched a long time ago. Upload a few files (and I mean a few, not like the bloated load you get with this one), and import the product. No manual template edits, no editing to fix errors or issues. It just works out of the box and very well.

I highly recommend everyone considers switching to v3 Arcade because it really shows what a well supported product should be like. This ibProArcade has obviously not been developed or properly supported for over 2 years now, and only a half hearted effort to update it for vB4.

Works flawlessly if you want to do a few things..


you never asked for help in the support forum or anywheres from what I can see other wise it would of been working that very same day
to each it's own..

Juggernaut 02-10-2011 01:06 AM

No problems reported for me on vb 4.1.1 :D

Amiga Harrison 02-10-2011 10:23 AM

Quote:

Originally Posted by Hippy (Post 2160822)
you never asked for help in the support forum or anywheres from what I can see other wise it would of been working that very same day
to each it's own..

Umm...

https://vborg.vbsupport.ru/showthread.php?t=244726

You even replied in my thread, although not directly to me... and as can be seen others have the same issue running the same configuration. (vB index.php file outside of the forum dir so the CMS is running in the domain and the forums below in /forum/ dir).

I'm not arguing that with a lot of work this product probably could be made to function.

But it wasn't just that which made me switch. ibProArcade is broken. No one can download the product offered on this page, install it and have it working out of the box. They have to edit files to fix a lot of bugs. Things like the arcade's template loading messed up in vB4 after the default install, no native support for adding a new arcade tab in vB4 (requires someone elses plugin), hiscores not saving.. etc. If this product was supported by its developer they surely would have taken all these fixes from the community by now and built a fully working and fixed new version of this product. They haven't, therefore it isn't supported and is broken.

Another is the need to still manually edit forum template files. These should all be auto edited by the product these days. The need to manually edit files should be long gone.

I do commend you Hippy for your personal dedication to this product and all the help you seem to now be giving to members with problems. Why don't you do exactly what I suggest? Fix the product and offer an updated fixed version that actually works with vB4? I would even suggest you offer to take over this project from the developer as you are supporting it 100 times better than he ever did.

Another huge thing that V3 Arcade is doing, which this product really needs to do, is ditching custom templates within its own product and moving over to using vB4's own template structure. This means the product uses the forums custom templates and will automatically look right.

Hippy 02-12-2011 02:44 AM

I see my post, It was directed to you
since I posted after all those people I allways reply to the first post first ...
then the others come next ..
I should of quoted you
but some times I hit and run so much to read in a short time.

anyway I see your point...

I just can't give it up since I have ran/ worked/ etc since day 1.. on so may forums..
and now I try to help many keep it alive..
Search my posts I asked a few things and 99.9% of the time it was not answered so I figure I would learn how it ticks and fix it my self..
so I try and share the info I learned..

it needs to be updated big time and I have it all worked out ATM, if it was my mod I would release it

but since it's not mine, I don't have permission to I can't. I can just help..

sorry it didn't work out
But if you ever want to install it again I can help you get it looking /working as it should

regards
Hippy

NoLuckNeeded 02-12-2011 04:11 AM

When i try to import the xml i am getting error: XML Error: mismatched tag at Line 46

using 4.1.1

Fantasy_aquatic 02-15-2011 05:52 AM

Dear Guys
i can't find admincp -> arcade in my admincp
could anyone advice why..?
in my forum, arcade already available but i cannot set the permission since, arcade in my admincp is missing
your advice will be very helpful

regards
Andree

OK- done - the reason is, i put the includes/xml file only to includes
lol

Silver44 02-18-2011 06:18 AM

Tournament winner jumbled

hello

I have started tournaments yesterday everything went well so far only
that the tournament really does not end when all the other

The users are in there twice

I need to change somewhere because what??

Thanks in advance for the help

lg.silver

credenscel 02-19-2011 04:47 AM

hi guys,
i'm having a REAL hard time with my site i installed it as was told but now my forum is completely gone :( instead i have this message

Sorry, no access granted here


But you may want to donate for this fantastic Arcade-Hack

i tried disabling the hack and enabling but nothing is helping! i would very much appreciate your help!

TheShanka 02-20-2011 12:20 PM

Scores not saving, oh dear.

Sw0rDz 02-22-2011 10:05 PM

Arcade is logging people out. Few users have been getting logged out when they visit/play the arcade game. I've been using the following code so users are able to submit scores.

Index.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

Vbulletin Version: 4.1.1

Hippy 02-23-2011 01:05 AM

Quote:

Originally Posted by Sw0rDz (Post 2165594)
Arcade is logging people out. Few users have been getting logged out when they visit/play the arcade game. I've been using the following code so users are able to submit scores.

Index.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

Vbulletin Version: 4.1.1

tell them to tick remember me when logging into the board...

Sw0rDz 02-23-2011 02:37 AM

That's what I've told them and it worked. I'm just curious if there is a way (or will be) so that users may not require to do that. I may look into it this weekend if I get time. Anyways, thanks!

Hippy 02-23-2011 02:41 AM

try this
https://vborg.vbsupport.ru/showpost....28&postcount=3

rhorman 02-24-2011 09:57 PM

Is it possible to allow users to zoom the game like v3 arcade does?

Hippy 02-24-2011 10:00 PM

not that I know of

MortysTW 02-24-2011 10:09 PM

Just zoom the browser. Hold the CTRL key and roll the wheel of your mouse. Works on everything windows based. Don't know about apple computers.

I do this all the time on games. Especially sniper type or other games requiring more exact aiming.

Try it right now with this vb thread. Hold the CTRL and roll your wheel.

dieseltec 02-28-2011 12:05 PM

Just wanna say Thank you hippy for all the help posted on ibproArcade:)

Better the devil you know sometimes, Have used ibpro on many forums.. So good to see its still going.
working fine Version 4.1.2

Hippy 02-28-2011 07:27 PM

Quote:

Originally Posted by dieseltec (Post 2167841)
Just wanna say Thank you hippy for all the help posted on ibproArcade:)

Better the devil you know sometimes, Have used ibpro on many forums.. So good to see its still going.
working fine Version 4.1.2

welcome

I have been around this mod since day one ..

with all the sites I admin at and or worked on..

Glad to help keep in living on..



enjoy

nacaruncr 03-01-2011 05:56 AM

Quote:

Originally Posted by nacaruncr (Post 2124914)
how i can do it this ibProArcade Shows Game Count + Newest Game and Random Game in your Forum Statistics in vb 4.0.3???
it is posible??

and i like so much know how do it this Arcade Rankings Link in Member Profile too

excuse me for my english...... :P

Quote:

Originally Posted by Hippy (Post 2125099)
they both need to be recoded..
if I get time I will peek at them

What happened with that? Now is with vb 4.0.4 :P
Can you help me please :o:o:o:o

Hippy 03-01-2011 11:05 AM

no time ..sorry
but contact stangger5
and visit his site http://www.next-level-arcade.com
He will be able to help..

mgcom 03-04-2011 10:52 PM

Quote:

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

If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.
Getting this when submitting scores ??

Version 4.1.2

MortysTW 03-05-2011 02:53 AM

You didn't add the snippet code into your forums.php file. I can't remember more details and using my phone right now and can't help you more than that. Read the instructions again. There is code text you copy paste into your forums.php file.

mgcom 03-05-2011 08:34 AM

cheers pal, that was the problem

MrsTryst 03-05-2011 07:14 PM

I know this is gonna be something stupid, but for the life of me, i can't figure it out :(

I have installed and uninstalled this 3-4 times now, all with the same results :( Whenever i click on "Arcade" and choose a game to play, instead of being able to play the game, i just see a white, blank screen where the game should be. I have played ibproarcade on other vb forums, so i know its nothing on my (pc) end and must be something server side...... any help would be greatly appreciated.

Hippy 03-05-2011 07:21 PM

make sure the files and folder are in the correct dir's..

MrsTryst 03-05-2011 07:47 PM

Quote:

Originally Posted by Hippy (Post 2169922)
make sure the files and folder are in the correct dir's..

thanks, one of my mods tried and it worked for him. Although he did exactly as i did.......strange.... still, as long as it works now :) Thanx for the response :up:

BOSS 302 03-06-2011 01:37 PM

How do I make it so it shows more than just one top score for each game? And also display them under the game? It seems like IBP use to do this...

Hippy 03-07-2011 08:06 PM

admincp > arcade
Method of recording a user's score
It is recommended to enable autopruning if set to save every score!
set to every score

beatyourtruck 03-08-2011 01:51 AM

Quote:

Originally Posted by MortysTW (Post 2169714)
You didn't add the snippet code into your forums.php file. I can't remember more details and using my phone right now and can't help you more than that. Read the instructions again. There is code text you copy paste into your forums.php file.

Started getting this error and just upgraded to the latest arcade version, still there. Then I noticed your post about some text to add to the forums.php file and didn't see the info you described in the instructions?

Any help?! 8)

Hippy 03-08-2011 02:36 PM

that code goes into your index.php not your forum.php..

the code is also posted all over the arcade support forum .. and is also in a text file in the arcade.zip file..

beatyourtruck 03-09-2011 03:18 AM

Thank you Hippy. I did not find the info in the zip file but quickly found it in the Support forum. My bad! I should have looked there before posting.

I appreciate the direction.....works fine with 4.1.2 8)

Hippy 03-09-2011 05:17 PM

welcome
no problem

Club XJ 03-13-2011 05:24 PM

I recently started a new site and I noticed the arcade game names are hard to read with the light background. How can I change this?

http://www.clubxj.com/arcade.php

hohleweg 03-13-2011 07:04 PM

1 Attachment(s)
Hi
I update to 4.0.2 now ist the table loom wrong
why
thanks.
Greetings Jo

Hippy 03-13-2011 09:48 PM

I will be happy to help you guys out ..
please post over in the ibProArcade-Support-Forum

this thread is not for this kind of support..

Thanks

haytham 03-21-2011 12:15 AM

Quote:

Originally Posted by Eric (Post 2043539)
Edit arcade.php, find:
PHP Code:

error_reporting(E_ALL & ~E_NOTICE); 

replace with:
PHP Code:

error_reporting(E_ALL & ~E_NOTICE & ~8192); 


Thank you. This solved my problem. Now I need to get my video directory sorted as I am having the same issues.

Webzcas 03-22-2011 03:53 PM

Hi,

I have installed this and the arcade works fine. However it is not displaying my custom header or footer.

Forum is here: www.politicsandcurrentaffairs.co.uk

and the arcade is installed here:

http://www.politicsandcurrentaffairs...rum/arcade.php

Any ideas as to what I need to do.

Cheers!

ne_ne 03-23-2011 01:21 AM

where do I download games from, I have fully installed vbulletin and the mod....

What file extension do I upload?

many thanks

-------------^^^

I'm a muppet, found the games.. if I wanted to add more games. How would proceed?

-----------^^^
Regards,

-NeNe
vbulletin 4.1.1

Sworm 03-30-2011 08:11 PM

Is this working on 4.1.2?

Hippy 03-30-2011 08:31 PM

Quote:

Originally Posted by Sworm (Post 2179186)
Is this working on 4.1.2?

yes but requires a little tweaking to get it looking good since it hass not been updated in some time
but all the info to do so is in the support forum..


All times are GMT. The time now is 07:24 AM.

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.06123 seconds
  • Memory Usage 1,856KB
  • 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
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)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