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)

legacy99 03-25-2008 12:06 AM

Does anyone know why games that save scores using, for example, 17.5 on other sites will save as 17 on mine?

MissKalunji 03-25-2008 12:50 AM

there's a setting : Score Separator try that and see?

Sgt Pepper 03-25-2008 04:16 AM

CHmoded the arcade folder and all its subfolders but not the .swf files cos there not subfolders.I did everything the instructions said to and still nothing....I really wanna use this but i cant get it going. plz help.it says wat i said 4 posts ago.is it something to do with the functions bit?

Thanking you in advance,
Sgt Pepper

JVCode 03-25-2008 04:44 AM

There's a problem with my ibparcade since installing 3.7 RC1 - None of the scores are being submitted, "This score was not submitted from the game. Your score will not be saved." - That's all i get everytime.

Gemma 03-25-2008 03:19 PM

Quote:

Originally Posted by JVCode (Post 1473886)
There's a problem with my ibparcade since installing 3.7 RC1 - None of the scores are being submitted, "This score was not submitted from the game. Your score will not be saved." - That's all i get everytime.

Portal installed? Anything other than the original index.php installed? Use the support forum instead of this thread?

slickdawg 03-26-2008 11:41 AM

I did a new install on 3.8.2 pl2 and arcade acts like it did not create the tables, I get these errors (this one from admincp - arcade - group permissions)

mySQL query error: SELECT usergroupid, title, arcade_access, p_require, max_play, ppd_require, ibpa_cats, tourney FROM vbulletinusergroup

mySQL error: Unknown column 'arcade_access' in 'field list'
mySQL error code:
Date: Wednesday 26th 2008f March 2008 07:40:28 AM

Sworm 03-26-2008 01:47 PM

Why arcade has got all of this DB problems? :(

calumn 03-26-2008 02:48 PM

Hello

I am having a problem, I know what is causing it but do not know how to solve it. My forum is www.computalk.net and has an arcade at www.computalk.net/arcade.php

Before it worked and submitted scores correctly to the highscores table.

However now, I have installed a portal page. The actually forum is now at www.computalk.net/forum.php instead of index.php

But the highscores aren't working, the games submit to:

http://www.computalk.net/index.php?a...de&do=newscore

That worked on the old one, but now they should submit to:

http://www.computalk.net/forum.php?a...de&do=newscore

I have looked around and can't find out how to change this, any help would be greatly appreciated.

R-D 03-26-2008 03:01 PM

Quote:

Originally Posted by calumn (Post 1475032)
Hello

I am having a problem, I know what is causing it but do not know how to solve it. My forum is www.computalk.net and has an arcade at www.computalk.net/arcade.php

Before it worked and submitted scores correctly to the highscores table.

However now, I have installed a portal page. The actually forum is now at www.computalk.net/forum.php instead of index.php

But the highscores aren't working, the games submit to:

http://www.computalk.net/index.php?a...de&do=newscore

That worked on the old one, but now they should submit to:

http://www.computalk.net/forum.php?a...de&do=newscore

I have looked around and can't find out how to change this, any help would be greatly appreciated.

There's instructions in the .zip file for sites with a portal:

Code:

If you are using vbAdvanced Portal and your /index.php is not the original one from vBulletin,
you have to edit your alternate index.php:

open index.php

At the very beginning of the File, right after:
----------------------------------------------------------
<?php
----------------------------------------------------------

you have to insert:
----------------------------------------------------------
// 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
----------------------------------------------------------


Otherwise your scores won't be recorded :)


vahit_k 03-28-2008 07:59 AM

thank you

unicorn2433 03-28-2008 01:27 PM

how to charge points to play??

Shazz 03-28-2008 01:31 PM

Quote:

Originally Posted by unicorn2433 (Post 1476743)
how to charge points to play??

Arcade options, left hand side in admincp

unicorn2433 03-28-2008 01:36 PM

thanks
I am in there and the only thing I see is where it says amount of post to play.
I can not seem to find where it how many points to charge to play.

i use vbux plaza

odonel 03-28-2008 06:03 PM

will ever be possible to have more than 8 in a tournament ?? 16, would be nice

traxxadd 03-29-2008 06:44 AM

OK i know i shouldnt be posting problems but im not sure where to put this. I downloaded and installed the arcade works but when i go to acp and click on a option its a blank screen. Does anyone know what i should do

Mrdby 03-29-2008 06:08 PM

why aren't the games won showing up in their post bit?

DieselTruck 03-30-2008 01:07 AM

Quote:

Originally Posted by traxxadd (Post 1477419)
OK i know i shouldnt be posting problems but im not sure where to put this. I downloaded and installed the arcade works but when i go to acp and click on a option its a blank screen. Does anyone know what i should do

Make sure you downloaded all the contents into the correct folders!

Draygonia 03-31-2008 03:56 AM

Hello, I am having trouble displaying my Admin main page. When I go to the main page of my Admin CP, it gives me this error.

Code:

Fatal error: Call to undefined function construct_nav_option() in /home/cwalkerz/public_html/forums/admincp/index.php on line 604

macc 04-01-2008 10:42 PM

hello!

when i install games i get error in my admin cp

"fread() [function.fread]: Length parameter must be greater than 0 in [path]/arcade/functions/tar.php on line 795"


some help or solution?

regards

macc

delphi77 04-02-2008 06:34 PM

1 Attachment(s)
Hello,
I have error in tournaments.
See attachments.

Shazz 04-03-2008 12:08 AM

Quote:

Originally Posted by unicorn2433 (Post 1476756)
thanks
I am in there and the only thing I see is where it says amount of post to play.
I can not seem to find where it how many points to charge to play.

i use vbux plaza

vbplaza is no longer support here on vb.org :(

lazydesis 04-03-2008 05:13 PM

Code:

Warning: fread() [function.fread]: Length parameter must be greater than 0 in [path]/arcade/functions/tar.php on line 795
i get the same error

i am using vb 3.7 RC2

any help wud be appreicated .. thanx

crkgb 04-06-2008 08:13 AM

I reinstalled RC2 with UTF8 settings and now the scores are not saved. The page rather sends me back to the home page. Please help.

MrZeropage 04-06-2008 04:41 PM

everybody please use the support-forums... I won't provide any support here which is stated in BIG letters above!

Shazz 04-06-2008 05:35 PM

Quote:

Originally Posted by MrZeropage (Post 1484488)
everybody please use the support-forums... I won't provide any support here which is stated in BIG letters above!

You may need to state that in big letters in your sig too ;)

Digital Jedi 04-08-2008 09:58 PM

It still say put it in big letters at the top of the modification, rather then at the end. I notice most of the time people read only as far as the updates and bug fixes, and read no further. Also I'd recommend making it red. Something like:

Support will ONLY be given in the ibProArcade Support Forums. Any Requests made in this thread will be ignored

[ibProArcade Support Forums]

Hornstar 04-09-2008 01:45 AM

Hey I just installed this on one of my sites.

I am just wondering tho, will you be including more ajax features?eg. editing scores and in the search?

Shazz 04-09-2008 12:54 PM

Quote:

Originally Posted by hornstar1337 (Post 1486391)
Hey I just installed this on one of my sites.

I am just wondering tho, will you be including more ajax features?eg. editing scores and in the search?

You could make suggestions here: https://vborg.vbsupport.ru/showthread.php?t=115582 :)

Technoviking 04-09-2008 05:28 PM

I followed the directions perfectly, but when I click on "Arcade" on the navbar it brings me to "arcade.php?" which is just my forums homepage.

All help appreciated.

Thanks!

Hornstar 04-10-2008 02:25 AM

Quote:

Originally Posted by Shazz (Post 1486670)
You could make suggestions here: https://vborg.vbsupport.ru/showthread.php?t=115582 :)

Yeah I posted there 1 minute after my post above lol, I noticed that section seconds after.

berry05 04-10-2008 09:32 PM

i got a question...is there a way to make it so that a "usergroup" can play certain games?

Kuntz 04-10-2008 09:55 PM

Hello, the Arcade is now posting scores to the wrong page:

http://www.mysite.com/index.php?act=Arcade&do=newscore

Shouldn't it be posting to arcade.php? I tried editing some lines but it's still not working.

What do I edit so it doesn't post to the wrong page?

Hornstar 04-11-2008 10:07 AM

Quote:

Originally Posted by MrZeropage (Post 930658)

Random Category is nice idea, maybe that is something I can quickly build in :cool:

Did you ever end up doing this? I would really love it. Will suggest it in the suggestion thread as well, but saw your post here :)

navajotex? 04-12-2008 04:07 PM

make me an example to add a new game

mi fate un esempio per aggiungere un gioco nuovo

Anj 04-13-2008 01:25 PM

Thanks Loads!
This was greatly needed!

Shouzen 04-13-2008 07:15 PM

I installed it and now it shows me 404 errors while trying to edit the settings in the AdminCP.

iBaker 04-13-2008 10:41 PM

I would like to replace the nav bar links:
Arcade ? Tournaments ? Your Settings ? Your Favorites ? Your Rankings ? Leaderboard ? Arcade ModCP
with buttons (images) but I don't know how to incorporate the img into the php code I found for the nav bar at line 1041 of the mod_arcade.php file

I want to insert:

Code:

<img src="$stylevar[imgdir_button]/arcade.gif" width="109px">
into the php code.

Any help is greatly appreciated and thanks!

DivineMessenger 04-15-2008 06:30 PM

Where would I insert some ad code to add ads to my arcade under the games while you play them?

xboxliveclans 04-15-2008 11:01 PM

How user can quit a tournament? even admin can't remove a user from tournament..

Stifmeister2 04-16-2008 04:22 PM

Quote:

Originally Posted by xboxliveclans (Post 1491647)
How user can quit a tournament? even admin can't remove a user from tournament..

Admin can replace a user though. :)


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