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)

username12 02-11-2006 04:41 PM

Love the arcade but have a minor issue. Is there any way to make it so all admininstrators don't have access to modify the arcade settings? I didn't see an option to do this in either administrator permissions or the arcade settings. Saying no to everything just gets ignored.

Sai01 02-11-2006 06:10 PM

help, after i upgrade to 2.5.4+, all avatar display as "NO avatar" picture... also how do i change the "actual_Highscore_Champion" text to just Highscore Champion? i also want to take out the pop up game in new window option...

columbonet 02-11-2006 08:21 PM

Quote:

Originally Posted by username12
Love the arcade but have a minor issue. Is there any way to make it so all admininstrators don't have access to modify the arcade settings? I didn't see an option to do this in either administrator permissions or the arcade settings. Saying no to everything just gets ignored.


I had this same problem. I had both my mods set to Super Mod. I had to make them just reg mods and not give them mod abilities in the arcade.

columbonet 02-11-2006 08:29 PM

Hi,

I have a couple issues.


1- Nothing ever shows up on the leaderboard.

2- How do you install games from www.pnflashgames.com

3- When I install a V3arcade game with more than 1 .swf file, it does not install completely. What directories are all the files supposed to go in.


Thanks

Annie^.^ 02-12-2006 12:31 AM

how can I import V3 Arcades scores?

Annie^.^ 02-12-2006 10:46 AM

Tell me how this happened?
I have a played game where doesn't show any username or guest, it's blank under the username when I look at the scores. How can I fix that? I like to have only the registered users able to play.

columbonet 02-12-2006 12:14 PM

Quote:

Originally Posted by columbonet
Hi,

I have a couple issues.


1- Nothing ever shows up on the leaderboard.

2- How do you install games from www.pnflashgames.com

3- When I install a V3arcade game with more than 1 .swf file, it does not install completely. What directories are all the files supposed to go in.


Thanks

4- When you play game "a" it shows up on game "b" high score list

Annie^.^ 02-12-2006 03:26 PM

Quote:

Originally Posted by utw-Mephisto
Add this to your index.php right after <?php:

PHP Code:

// ibproarcade modification
if($_POST['module'] == "pnFlashGames"){
    
$_GET[act] = "Arcade";
    
$_GET['module'] = "arcade";
}
if(
$_POST['func'] == "storeScore"){
    
$_GET['do'] = "pnFStoreScore";
}
if(
$_POST['func'] == "saveGame"){
    
$_GET['do'] = "pnFSaveGame";
}
if(
$_POST['func'] == "loadGame"){
    
$_GET['do'] = "pnFLoadGame";
}
$act $_GET[act];
$showuser$_GET[showuser];
if(
$act == "Arcade") {
include 
"arcade.php";
exit();
}
if(!empty(
$showuser) && $showuser >= 1) {
$u $showuser;
$_GET[u] = $showuser;
include 
"member.php";
exit();
}
// end of ibproarcade modification 

So your index should look something like

PHP Code:

<?php
// ++=========================================================================++
// || vBadvanced CMPS v2.0.0 (vB 3.5) - 9656
// || ? 2003-2004 vBadvanced.com & PlurPlanet, LLC - All Rights Reserved
// || This file may not be redistributed in whole or significant part.
// || http://vbadvanced.com
// || Downloaded 03:54, Fri Dec 9th 2005
// || 
// ++ ========================================================================++


// ibproarcade modification
if($_POST['module'] == "pnFlashGames"){
    
$_GET[act] = "Arcade";
    
$_GET['module'] = "arcade";
}
if(
$_POST['func'] == "storeScore"){
    
$_GET['do'] = "pnFStoreScore";
}
if(
$_POST['func'] == "saveGame"){
    
$_GET['do'] = "pnFSaveGame";
}
if(
$_POST['func'] == "loadGame"){
    
$_GET['do'] = "pnFLoadGame";
}
$act $_GET[act];
$showuser$_GET[showuser];
if(
$act == "Arcade") {
include 
"arcade.php";
exit();
}
if(!empty(
$showuser) && $showuser >= 1) {
$u $showuser;
$_GET[u] = $showuser;
include 
"member.php";
exit();
}
// end of ibproarcade modification

error_reporting(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS'1);
define('THIS_SCRIPT''adv_index');
define('VBA_PORTAL'true);
define('VBA_SCRIPT''CMPS');

// ============================================
// Enter the full path to your forum here
// Example: /home/vbadvanced/public_html/forum
// ============================================

chdir(xxxxxx);

// ============================================
// No Further Editing Necessary!
// ============================================

$phrasegroups = array();
$globaltemplates = array();
$actiontemplates = array();
$specialtemplates = array();

require_once(
'./global.php');

print_portal_output($home);

?>

@MrZeropage: Cant you add that to the readme, I guess it must have been answered already a gazillion time but the thread is just tooo huge ;)

For me for some reason it's not working I get this error

Quote:

Notice: Undefined index: module in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 12

Notice: Undefined index: func in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 16

Notice: Undefined index: func in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 19

Notice: Undefined index: func in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 22

Notice: Use of undefined constant act - assumed 'act' in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 25

Notice: Undefined index: act in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 25

Notice: Use of undefined constant showuser - assumed 'showuser' in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 26

Notice: Undefined index: showuser in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 26[/PHP]

SuperFly 02-12-2006 03:49 PM

chdir(xxxxxx);
Your puting the server path, not the url corect?

Smiry Kin's 02-12-2006 04:11 PM

/arcade.php

its kinda messed up..

i have both left and right columns installed, and only the left one shows up? ...

thanks


All times are GMT. The time now is 11:32 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.04132 seconds
  • Memory Usage 1,773KB
  • 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_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (7)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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