I want to run both the v3Arcade and the ibProArcade on my site side by side. How can I do this. It seems that both have an "arcade.php" file.
That's the crux of what needs to be changed. I have done it, but it's a pain!
You have to basically go through all the php files and find all instances of
arcade.php
and change them to
ibproarcade.php
then find all instances of
arcade/
and change them to
ibproarcade/
In a nutshell, that will do it, but it's a lot more work than it sounds. And don't just search and replace the word "arcade" as that will bugger things up.
Also you then have the issue that any ibp games that have gamedata folders need to have those folders in the v3arcade /arcade/ folder, not the newly-renamed /ibproarcade/ one! This is because the flash games generally look in /arcade/ not /ibproarcade/.
Once up and running, you can no longer run ibp games on v3 due to a conflict in the score sending, you would have to keep games to their "native" arcades.
Basically there's quite a bit of trial and error involved. But my own site proves it can be done.
Im wondering what would be the benefits of doing so? So that you can have the features of both? :P
That's pretty much it really..plus, for nutters like me, the technical satisfaction of having achieved it. Sometimes I do forget which arcade can do what though.
Then you can try getting really snazzy and having a leaderboard that covers both arcades on one page:
Once up and running, you can no longer run ibp games on v3 due to a conflict in the score sending, you would have to keep games to their "native" arcades.
you can actually
just set up the conditional to look for those games at submit time. It just needs that the games in both arcade be unique.
Well, the v3arcade does not use an "arcade" folder. It uses a "games" folder. So, following your instructions, all I need to do is find and replace all references to "arcade.php" and replace it with "ibproarcade.php"?
Well, the v3arcade does not use an "arcade" folder. It uses a "games" folder. So, following your instructions, all I need to do is find and replace all references to "arcade.php" and replace it with "ibproarcade.php"?
You could be right about that...I am sure there used to be a clash somewhere though, it's so long since I first did this (vB 3.0 days) that I can't think now. But I'm sure I remember it was changed for a reason.
Quote:
Originally Posted by Acers
you can actually
just set up the conditional to look for those games at submit time. It just needs that the games in both arcade be unique.
I never thought of that...although I do have some games duplicated in both....
duplicates will work if the submission is direct to arcade.php as in v3arcade and for the ibpro game to index.php as thats independent submission. It will fail if you have duplicate same arcade games.. like v3 or ib game in both arcades.
Well, the v3arcade does not use an "arcade" folder. It uses a "games" folder. So, following your instructions, all I need to do is find and replace all references to "arcade.php" and replace it with "ibproarcade.php"?
That is all you have to do. I did this and it works.