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)

Sworm 12-30-2009 10:35 AM

Use this for the navbar and not the ipbarcadepro integrated:
https://vborg.vbsupport.ru/showthread.php?t=228507

yjhys 12-30-2009 12:23 PM

Quote:

Originally Posted by Sworm (Post 1942368)
Use this for the navbar and not the ipbarcadepro integrated:
https://vborg.vbsupport.ru/showthread.php?t=228507

thanks, I done it.

movslow 01-02-2010 01:32 AM

Any word on the security token issue when saving the high scores?

hewo??????????

GamerPerfection 01-02-2010 02:42 PM

Hi, i've installed the MOD. :D
Can't wait to add some games to my site.

However when I go to the arcade page some of the template is not the right colour with the rest. Which templates do I amend for this?
http://www.galaxyofstars.co.uk/arcade.php

GamerPerfection 01-02-2010 03:01 PM

Quote:

Originally Posted by movslow (Post 1944542)
Any word on the security token issue when saving the high scores?

hewo??????????

In the download folder for the Arcade you should have a txt document called "INFO - vbadvanced or another Portal"

Open that and follow the instructions. It worked for me.

Benedict 01-03-2010 02:15 PM

This update just kill access to my admin panel on v4. It can not find the login page.

So far I cant retrieve it back. Looks like I will have to restore the whole forum :(

Sworm 01-03-2010 05:41 PM

Quote:

Originally Posted by movslow (Post 1944542)
Any word on the security token issue when saving the high scores?

hewo??????????

Add this code in your ..forum/index.php file:

At the very beginning of the File, right after:
Code:

<?php
add:

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();
}


Sworm 01-03-2010 05:50 PM

Quote:

Originally Posted by Benedict (Post 1945974)
This update just kill access to my admin panel on v4. It can not find the login page.

So far I cant retrieve it back. Looks like I will have to restore the whole forum :(

If you think that is the ipbproarcade , you can also disable all the plugins by the config.php file adding:
Code:

define('DISABLE_HOOKS', true);

Verionia 01-04-2010 02:47 AM

Hi, Im having problems with the footer layout since installing the game... seems to have lost its original format...
https://vborg.vbsupport.ru/external/2010/04/69.jpg

mastertek2000 01-04-2010 11:07 PM

3.8.4L2 upgrade problem

ever scene i upgrade to 3.8.4 L2 from 3.8.4L1
i get errors with arcade

here is the errors i get
any help pls

Deprecated: Assigning the return value of new by reference is deprecated in /home/usajeepo/public_html/includes/init.php on line 55

Deprecated: Assigning the return value of new by reference is deprecated in /home/usajeepo/public_html/includes/init.php on line 107

Deprecated: Assigning the return value of new by reference is deprecated in /home/usajeepo/public_html/includes/init.php on line 111

Deprecated: Assigning the return value of new by reference is deprecated in /home/usajeepo/public_html/includes/init.php on line 119

Deprecated: Assigning the return value of new by reference is deprecated in /home/usajeepo/public_html/includes/init.php on line 130

Deprecated: Assigning the return value of new by reference is deprecated in /home/usajeepo/public_html/includes/init.php on line 134

Deprecated: Assigning the return value of new by reference is deprecated in /home/usajeepo/public_html/includes/init.php on line 142

Deprecated: Assigning the return value of new by reference is deprecated in /home/usajeepo/public_html/includes/init.php on line 211

Deprecated: Assigning the return value of new by reference is deprecated in /home/usajeepo/public_html/includes/init.php on line 389

Deprecated: Assigning the return value of new by reference is deprecated in /home/usajeepo/public_html/includes/class_core.php on line 2552

Warning: Cannot modify header information - headers already sent by (output started at [path]/includes/init.php:55) in [path]/arcade.php on line 97

Edrondol 01-07-2010 06:20 PM

I'm getting that security error also and I had everything working. I have been uploading games with no problems. Now today in the 5 games I've added 2 of them give this error. Permissions seem to be identical.

s0lidgr0und 01-07-2010 09:10 PM

Perhaps the <fieldset> replaced with <fieldset class="fieldset"> issue in arcade > skins > skin_arcade.php will be added to the next version?

Juggernaut 01-09-2010 07:47 AM

I'm running vBulleting publishing suite and I can't save high scores :(
Help.

Ocean-Wonders 01-09-2010 08:01 AM

Quote:

Originally Posted by Destron (Post 1950967)
I'm running vBulleting publishing suite and I can't save high scores :(
Help.

I was having the same problem you need to do this below. It works like a dream now ;)

Quote:

Originally Posted by Sworm (Post 1946171)
Add this code in your ..forum/index.php file:

At the very beginning of the File, right after:
Code:

<?php
add:

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();
}



wikked 01-09-2010 09:35 AM

Everything installed fine

tested out the first game which played ok...new score showed ok


but then trying to access the arcade again brings up this database error

Quote:

mySQL query error: SELECT user.userid, user.avatarid, user.avatarrevision, avatar.avatarpath, customavatar.filename, NOT ISNULL(filedata) AS hascustom, customavatar.dateline FROM (SELECT * FROM user WHERE userid=1) AS user LEFT JOIN avatar AS avatar ON avatar.avatarid = user.avatarid LEFT JOIN customavatar AS customavatar ON customavatar.userid = user.userid WHERE customavatar.userid=1 OR user.userid=1

mySQL error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT * FROM user WHERE userid=1) AS user LEFT JOIN avatar AS
mySQL error code:
Date: Saturday 09th of January 2010 12:30:14 PM
i can access the games individually but cant get to the arcade home as soon as a score is posted. I have removed and reinstalled and the same error occurred

Help please :D:D:up:

by the way...im running Vb CMPS and had to do the changes to get the scores to be recorded

Grimace 01-09-2010 02:42 PM

Let me just tell you, I installed this in my test forum and I love it. I can't wait to go live with this. The folks on my site (www.dinasaurhedcult.com/forums) are going to love it!

CrosseyedGamer 01-09-2010 03:34 PM

Quote:

Originally Posted by Grimace (Post 1951163)
Let me just tell you, I installed this in my test forum and I love it. I can't wait to go live with this. The folks on my site (www.dinasaurhedcult.com/forums) are going to love it!

Yes they will love it!
We have 1200 games on our site and run a weekly challenge with prizes. Enjoy!

ndahiya 01-09-2010 04:16 PM

hi,

get an error after game finishes: "could not access game table" (only appears in astroids). just installed 2.7 on vb 4.0

thx.

ndahiya

Juggernaut 01-09-2010 04:32 PM

Quote:

Originally Posted by Ocean-Wonders (Post 1950974)
I was having the same problem you need to do this below. It works like a dream now ;)

Thank you very much, that fixed everything :D

ndahiya 01-09-2010 04:40 PM

hi,
is there a way to show the profile picture instead of the avatar on leaderboard etc? thx.

ndahiya

davagator 01-09-2010 06:32 PM

This is probably a dumb question but where to I get more games for this?

WEBDosser 01-09-2010 06:36 PM

Quote:

Originally Posted by movslow (Post 1944542)
Any word on the security token issue when saving the high scores?

hewo??????????


would like this sorted too.

WEBDosser 01-09-2010 06:41 PM

Quote:

Originally Posted by davagator (Post 1951349)
This is probably a dumb question but where to I get more games for this?

read the codes rule
Quote:

** Please do not post any information, request or offer of Games here in this Thread !

Verionia 01-10-2010 03:25 AM

Quote:

Originally Posted by Verionia (Post 1946590)
Hi, Im having problems with the footer layout since installing the game... seems to have lost its original format...
https://vborg.vbsupport.ru/external/2010/04/69.jpg

anyone can help me?

wikked 01-10-2010 10:58 AM

Quote:

Originally Posted by wikked (Post 1951012)
Everything installed fine

tested out the first game which played ok...new score showed ok


but then trying to access the arcade again brings up this database error



i can access the games individually but cant get to the arcade home as soon as a score is posted. I have removed and reinstalled and the same error occurred

Help please :D:D:up:

by the way...im running Vb CMPS and had to do the changes to get the scores to be recorded

anyone?

wikked 01-11-2010 06:33 PM

Quote:

Originally Posted by wikked (Post 1951012)
Everything installed fine

tested out the first game which played ok...new score showed ok


but then trying to access the arcade again brings up this database error




i can access the games individually but cant get to the arcade home as soon as a score is posted. I have removed and reinstalled and the same error occurred

Help please :D:D:up:

by the way...im running Vb CMPS and had to do the changes to get the scores to be recorded


just done another instal today following every instruction to the letter byt again as soon as it posts a score i get the following database error

Quote:

mySQL query error: SELECT user.userid, user.avatarid, user.avatarrevision, avatar.avatarpath, customavatar.filename, NOT ISNULL(filedata) AS hascustom, customavatar.dateline FROM (SELECT * FROM user WHERE userid=1) AS user LEFT JOIN avatar AS avatar ON avatar.avatarid = user.avatarid LEFT JOIN customavatar AS customavatar ON customavatar.userid = user.userid WHERE customavatar.userid=1 OR user.userid=1

mySQL error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT * FROM user WHERE userid=1) AS user LEFT JOIN avatar AS
mySQL error code:
Date: Saturday 09th of January 2010 12:30:14 PM
can anyone shed any light on this as its doing my head in now :down:

TimberFloorAu 01-12-2010 03:30 AM

Quote:

Originally Posted by WEBDosser (Post 1951354)
would like this sorted too.

This has been mentioned MANY MANY times mate.

edit index.php ( in forum root )

after:

Code:

<?php
add

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();
}
// ibProArcade

Sorted

Nintendo-Daily 01-12-2010 04:00 PM

Is there some kind of exploit that can be used in Video Poker in the Casino? I have one member who is winning a TON of credits and that's the only game he plays in the casino. Is there possibly a bug with the Video Poker feature? Has anyone else seen this?

Juggernaut 01-13-2010 12:41 AM

The fonts in the arcade are extremely difficult to read with any skin I install, is there
a way to fix this in the arcade settings or by altering a file?

WEBDosser 01-13-2010 06:26 AM

Quote:

Originally Posted by TimberFloorAu (Post 1953258)
This has been mentioned MANY MANY times mate.

edit index.php ( in forum root )

after:

Code:

<?php
add

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();
}
// ibProArcade

Sorted

i think i will leave it if this is required as editing files voids support.

Digital Jedi 01-13-2010 07:43 AM

Quote:

Originally Posted by WEBDosser (Post 1954187)
i think i will leave it if this is required as editing files voids support.

Actually, just having a modification installed voids official support.

Zighinno 01-13-2010 06:13 PM

Hi, why in some games as a result always 0? Until yesterday everything worked well

Thanks

car20 01-14-2010 12:36 PM

Hello

When I click on submit high score I am taken to the homepage of my forum and no high score is stored and no error messages given.

My Vb ver is 4.0.1 vbulletin Suite

Please help,

Thanks

car20 01-14-2010 04:22 PM

Solved Problem :)

Edit index.php and add some code from INFO- vbadvanced or another Portal.txt file in ibProArcade2.7.0+ pack.

Thanks dear MrZeropage .

movslow 01-14-2010 09:11 PM

Quote:

Originally Posted by Sworm (Post 1946171)
Add this code in your ..forum/index.php file:

At the very beginning of the File, right after:
Code:

<?php
add:

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();
}


Thanks
:up:

idoL1 01-15-2010 03:19 AM

whenever i enable the xml file in the plugins n products i get this error

Invalid SQL:

SELECT t.champion, u.userid FROM vb_tournaments AS t
LEFT JOIN vb_user AS u ON (t.champion = u.username)
WHERE champion<>'';

MySQL Error : Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (latin1_general_ci,IMPLICIT) for operation '='
Error Number : 1267

when i disable it it goes away...any help?

War.Frog 01-15-2010 02:33 PM

1 Attachment(s)
I can't find this problem in this thread, but not sure if I overlooked it??

I'm running vB 4.01, and I edited all the templates based on the instructions, however my alignment and line returns are messed up.

Any thoughts on how to correct this?

idoL1 01-15-2010 07:41 PM

helppp...pleaseee.....dying....12 hours on this :(

O_Dog 01-17-2010 05:07 PM

There was a fix for vb4.0.0

https://vborg.vbsupport.ru/showpost....5&postcount=21

But after upgrade to vb4.0.1 that fix no longer works as i installed vb4 just today and added that fix but didnt work, Others are reporting it not working to, so i think for me vb4 can wait till everything is working well, because at the moment its garbage

ravenfaust 01-17-2010 07:16 PM

Error
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ravenfst_ravenfa'@'localhost' (using password: YES) in [path]/arcade/functions/dbclass.php on line 44

Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in [path]/arcade/functions/dbclass.php on line 47
ERROR: Cannot find database ravenfst_
Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in [path]/arcade/functions/dbclass.php on line 209

mySQL query error: SELECT arcade_access, p_require FROM usergroup WHERE usergroupid = 1

mySQL error:
mySQL error code:
Date: Sunday 17th 2010f January 2010 10:14:09 PM

how do i fix?


All times are GMT. The time now is 08:59 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.13032 seconds
  • Memory Usage 1,882KB
  • 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
  • (11)bbcode_code_printable
  • (20)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