vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Add-On Releases - v3 Arcade - Games Arcade System for 3.6.0 (https://vborg.vbsupport.ru/showthread.php?t=114012)

bandare 08-29-2006 11:24 PM

When I follow the instructions for the postbit legacy, it doesnt work right in 3.6. Any clues?

MrZeropage 08-30-2006 05:48 AM

Quote:

Originally Posted by Zidane007nl
I'm not saying Zero Tolerance made a crappy hack. It's just that I didn't like the hack and it was not working really well and the support back then for IPB was really bad.

Hi,

just to clear this out - it is not Zero Tolerance developing ibProArcade, but me, MrZeropage ;)

No problem you don't like my modification (although it now is working well), but please notice that I do give support for this project here on vbulletin.org, this ibProArcade for vBulletin is a spinoff from the ibProArcade for IPB and finally is completely different today, just for vBulletin, just here on vbulletin.org :)

BLazeD1 08-30-2006 06:45 AM

Quote:

Originally Posted by MONKEY_MAN
is this mod compatable with 3.6.0, as it is listed under 3.6.0
i keep getting this error message:


same error with 3.5.4.

Shouzen 08-30-2006 06:48 AM

Warning: Invalid argument supplied for foreach() in /admincp/arcadeadmin.php on line 1047

Warning: Invalid argument supplied for foreach() in /includes/functions.php on line 3357

I keep getting these errors when i try to set the uer settings.

mr.gamesbay 08-30-2006 08:21 AM

Quote:

Originally Posted by y2krazy
Getting this when trying to use iB "Pro" Arcade - Mass Game Import:

Warning: Invalid argument supplied for foreach() in /admincp/arcadeadmin.php on line 742

Any ideas?

I have this errors with some games too, but i find where was the problem.
Download 7zip, extract the tar and tar it with 7zip again. Then u can import the games without any problems.

alkatraz 08-30-2006 06:56 PM

fresh install on vb3.6.0, works great! thank you

very slick interface, i like!


I noticed v3arcade.com is turned off for the most part, where can I get more games?

I found an ancient thread,
https://vborg.vbsupport.ru/showthrea...ade+more+games

Will those old games work? I don't want to mess it up.

There might be some posts in here about this but 42 pages long... umm.. yeah, maybe someone can update the first post with a link to more games? THX!

Edit: Saw the post above, looks like this site (http://www.gaming-heaven.com/) is commercial..

Zidane007nl 08-30-2006 09:50 PM

Quote:

Originally Posted by MrZeropage
Hi,

just to clear this out - it is not Zero Tolerance developing ibProArcade, but me, MrZeropage ;)

Damn, sorry for that. >.<
Sometimes I'm mixing names up... :confused:

Question about v3arcade: Why does the gameid field starts at 96 instead of 1 when installing v3arcade with the default games? It isn't too much of a problem, just pointing you on it.

TranceCan 08-30-2006 11:03 PM

I hope someone can suggest a solution for my problem.

I installed v3arcade, and my forums are run on SSL pages. I modified the "codebase" tag to use https for the plugin (so I don't get any security warnings)....however...when I play a game it gets to the end and the game just sort of hangs instead of submitting the score. It does this for each of the default 5 games.

If I load the page using http:// instead...it works just fine.

There MUST be some incredibly tiny fix that would solve this problem...does anyone have any suggestions??

certvn 08-31-2006 12:35 AM

I want add game manual. Please update code

Thanks

MrZeropage 08-31-2006 05:10 AM

@Zidane007nl:
geen probleem ;)


@TraceCan:
Games normally submit their score to arcade.php or index.php (depending on gametype) so I think this is somehow "hardcoded" in the games itself.
Maybe you try some htaccess-rewrite-rules to solve this for you ? (just an idea)

certvn 08-31-2006 06:03 AM

Quote:

Call to a member function on a non-object in:
..\admincp\arcadeadmin.php on line 600
Please help me

TranceCan 08-31-2006 06:12 AM

Quote:

Originally Posted by MrZeropage
@Zidane007nl:
@TraceCan:
Games normally submit their score to arcade.php or index.php (depending on gametype) so I think this is somehow "hardcoded" in the games itself.
Maybe you try some htaccess-rewrite-rules to solve this for you ? (just an idea)

Hey, thanks for the suggestion. Yes it is hardcoded into the flash to submit to arcade.php, but the problem isn't where it's submitting to, it just never actually does the submit (when it's on an https:// page).

When I am at:

https://www.mysite.com/forums/arcade.php the game loads, I can play, but no scores, just sites there after the game ends....

http://www.mysite.com/forums/arcade.php everything works fine

In the flash code that is hardcoded into the games itself it has this line:

this.prequestvars.sendAndLoad("./arcade.php", this.pranswer, "POST");

So, that shouldn't be a problem if it's https:// instead of http://

I think it's something else, possibly in the HTML that loads the flash movie??


Oh, it gets more interesting....it seems to work in Firefox! HOWEVER, when it goes to actually do the submit I get this error:

Fatal error: Cannot use object of type mysqli_result as array in /var/www/html/forums/arcade.php on line 1203


OK I'm back AGAIN and confirmed it DOES work in Firefox. The error I just posted above happens whenever a score is submitted that is not a new highscore. It is related to this code around like 1203 in arcade.php, I suspect because I am using mysqli instead of plain old mysql..anyone have a fix??

Code:

                      $check = $db->query_first("SELECT COUNT(*)+1 AS rank FROM " . TABLE_PREFIX . "arcade_sessions AS arcade_sessions
                        WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=$game[gameid] AND score" . iif($game['isreverse']==1, '<', '>') . "$game[score]");

                        $check2 = $db->query_first("SELECT COUNT(*)+1 AS rank FROM " . TABLE_PREFIX . "arcade_sessions AS arcade_sessions
                        WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=$game[gameid] AND score='$game[score]' AND finish>$game[finish]");
                }
                $highscore = $check['rank'] + $check2['rank'];


midirtrider 09-01-2006 04:45 AM

Im having a high score sumbit problem as well..

when it is a New high score (or even a new top ten score) it automaticly kicks you back to the forum HOME instead of submiting the score..

I recently upgraded to 3.6.0, before that was on 3.5.4 and arcade and everything was running flawlessly.. now since the upgrade Im getting this submit high score problem..

Gaia 09-01-2006 04:09 PM

Installed perfectly fine, thanks for the mod, added my install ^_^.

bandare 09-01-2006 05:15 PM

my high score sytem works but it wont reset the highscores for 3.6.

Does anyone else have that issue and know a fix?????/

-----------------------
In addition, where can i download some more games for free that will work with the system and allow high scores to be posted - please help!

PitPunks 09-01-2006 05:52 PM

it wont let me charge people to play games. I have 3.6.0 and both the latest version of v3arcade and vbux/vbplaza

John 09-01-2006 10:42 PM

Quote:

Originally Posted by alkatraz
fresh install on vb3.6.0, works great! thank you

very slick interface, i like!


I noticed v3arcade.com is turned off for the most part, where can I get more games?

I found an ancient thread,
https://vborg.vbsupport.ru/showthrea...ade+more+games

Will those old games work? I don't want to mess it up.

There might be some posts in here about this but 42 pages long... umm.. yeah, maybe someone can update the first post with a link to more games? THX!

Edit: Saw the post above, looks like this site (http://www.gaming-heaven.com/) is commercial..

vbulletingames.com seems to be the best place for games right now.

JoyB 09-02-2006 04:21 AM

Hi

I upgraded to 3.6 before I installed the arcade and everything was going well but one of my members has just said that her highest score did not save. Any idea's on what the problem might be please?

Also, is it possible to edit scores as I can't seem to find how to do it?

Thanks :)

davelacey 09-02-2006 11:45 AM

I'm getting the same thing on certain games only - it's not a universal problem, which I think suggests it may be something in the individual game coding that's not compatible with 3.6.0

JoyB 09-02-2006 12:03 PM

I've got round the problem for the time being and that was to change the sessional timeout to 2000 seconds. Obviously it's not an ideal situation but hopefully someone else will come up with a suggestion soon.

Is it possible to edit players scores?

bandare 09-02-2006 12:04 PM

As much as I love this hack, its really not easy to find places to add new games to the list without paying for them. If anyone has some and wouldn't mind zipping a few up and sending me them I would be grateful.

-----------------------------------------

I still can't reset the scores through the vbarcade adminCP. I click on the button and it says its done then it doesn't change them. Anytone else having the same issue at all? I am using 3.6

JoyB 09-02-2006 12:12 PM

Try these :)


http://www.ibparcade.com/index.php?

http://invisionsportsarcade.com/index.php?

http://www.vbulletingames.com/

http://www.ibpdownloads.com/ipb/index.php?act=idx

bandare 09-02-2006 01:17 PM

I tried the vbulletingames site but cant get an email from registering....

will try the others..... thankyou......

Hope I can get the score reset to work :)

JoyB 09-02-2006 01:21 PM

Thank you :)

davelacey 09-02-2006 01:55 PM

JoyB and bandare; have pm'd you. :)

JoyB 09-02-2006 02:27 PM

Thank you Dave, I've just replied :)

bandare 09-02-2006 02:28 PM

me too.... excited now:P

John 09-03-2006 03:55 AM

Quote:

Originally Posted by JoyB
Hi

I upgraded to 3.6 before I installed the arcade and everything was going well but one of my members has just said that her highest score did not save. Any idea's on what the problem might be please?

Also, is it possible to edit scores as I can't seem to find how to do it?

Thanks :)

It might be a cookie timeout problem, I'm doing some testing on it now and if I find a problem I'll address it in the next release.

Also, it's not possible to edit scores - since it doesn't really make sense for admins and moderators to be able to edit scores unless they wanted to cheat. But if you really need to edit a score for whatever reason, the only way to do it is to go into the database and change values manually.

Quote:

Originally Posted by davelacey
I'm getting the same thing on certain games only - it's not a universal problem, which I think suggests it may be something in the individual game coding that's not compatible with 3.6.0

Someone has sent me some examples of games that don't work, I'm looking into what the problem is.

JoyB 09-03-2006 05:17 AM

Thanks for looking into the problem John, it's appreciated :)

The only reason why I wanted to know if I could edit scores is because the member who is having a problem got her highest score ever and it didn't save it. She was disappointed so I thought I could edit her old score.

dartho 09-03-2006 01:43 PM

I have a couple games doing the same - not accepting score sumissions. Under 3.0.x these same games DID work OK - if you need more samples, John I'd be happy to pass them on.

John 09-03-2006 02:11 PM

Quote:

Originally Posted by dartho
I have a couple games doing the same - not accepting score sumissions. Under 3.0.x these same games DID work OK - if you need more samples, John I'd be happy to pass them on.

Are they IPB games?

Phooey 09-03-2006 02:45 PM

I have a feature request for the next version or, better yet, is this something I can change in this version...

Is it possible to change which tab to view as the default for a user? For example, every time I go to the arcade, it defaults to the "Favorites" or "All" tab instead of the "Random" tab.

rjordan 09-04-2006 03:40 AM

Anyone that has not received an e-mail for validation at vBulletinGames.com, have you tried to contact me using the contact link on the site? If not, try using that.

dartho 09-04-2006 03:51 AM

Quote:

Originally Posted by John
Are they IPB games?

I don't believe so, using v3arcade under 3.0.x they came with a PHP file to install them which worked perfectly. I had no luck with the same install scripts on 1.06/3.5.x so I manually added them using a 'Manual Addition' tool which I found here on VB.org somewhere.

Is there an easy way to identify an SWF as being an IBP game?

BTW - when I say not accepting score submissions, what happens is that nothing happens when you click the "Submit" button in the game (the button clicks, but there is no browser activity all all)

Shazz 09-04-2006 04:32 AM

Mmm

=================================
v3 Arcade
for vBulletin 3.5
=================================

Should be updated :P

dougk 09-04-2006 07:18 AM

i got this error when trying to import the file

Warning: Unknown(/home/scooper9/public_html/includes/class_database_analyse.php): failed to open stream: No such file or directory in /admincp/plugin.php(1924) : eval()'d code on line 1

Fatal error: (null)() [function.require]: Failed opening required '/home/scooper9/public_html/includes/class_database_analyse.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/scooper9/public_html/admincp/plugin.php(1924) : eval()'d code on line 1

can anyone help

---MAD--- 09-04-2006 08:22 AM

hmm not sure, try installing the other arcade and see if you get the same error.

SportsZone 09-04-2006 11:55 AM

Reupload the files in /public_html/admincp/ and then try again.

iglobal 09-05-2006 01:50 AM

Hi there, I want to translate v3Arcade to spanish (at least a part of it), but I canĀ“t find where are the original texts in order to modify them. Thanks a lot.

John 09-05-2006 06:05 AM

Quote:

Originally Posted by dougk
i got this error when trying to import the file

Warning: Unknown(/home/scooper9/public_html/includes/class_database_analyse.php): failed to open stream: No such file or directory in /admincp/plugin.php(1924) : eval()'d code on line 1

Fatal error: (null)() [function.require]: Failed opening required '/home/scooper9/public_html/includes/class_database_analyse.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/scooper9/public_html/admincp/plugin.php(1924) : eval()'d code on line 1

can anyone help

Make sure you upload all the files, including class_database_analyse.php.


All times are GMT. The time now is 05:17 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.04075 seconds
  • Memory Usage 1,839KB
  • 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
  • (1)bbcode_code_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)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