Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > ibProArcade Archive
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
V32 games - errors Details »»
V32 games - errors
Version: , by deepak7 deepak7 is offline
Developer Last Online: Sep 2011 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 05-26-2007 Last Update: Never Installs: 0
 
No support by the author.

Hey

EVERY V32 game i install on my forum wont save scores! (score not submitted from the game)

Any idea? Do I need to install them differently? (I upload the tar and click on Install near the filename in admin).

I have ibProArcade v2.6.1+ and 3.6.5 (just upgraded to 3.6.7)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 05-28-2007, 09:04 AM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

oops, yes, that is right

make sure your index.php (from portal) has this code
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_NOHTML);
  $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
Reply With Quote
  #13  
Old 05-28-2007, 09:54 AM
deepak7 deepak7 is offline
 
Join Date: Nov 2005
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ty , still not working.
ITS ONLY for v32 games :/
Reply With Quote
  #14  
Old 05-28-2007, 07:32 PM
Stifmeister2 Stifmeister2 is offline
 
Join Date: Feb 2006
Location: Finland
Posts: 755
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I did the edit for my vbadvanced index but I still get the error. The first time I play everything goes just fine. But the next time I play I always get the same errror (score not submitted from the game).

It's a v33 game called "Meredes Drift" (downloaded from ibparcade.com). I use IE7 (if it matters).

The same thing goes for every member I think, first score is ok, then none of the scores are saved..
Reply With Quote
  #15  
Old 05-30-2007, 07:24 PM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

all of you having this problem please provide AdminCP+FTP access so I can check this out and fix it is necessary. Tell me which games have this problem...
Reply With Quote
  #16  
Old 05-30-2007, 08:13 PM
stangger5's Avatar
stangger5 stangger5 is offline
 
Join Date: Jan 2005
Location: Online
Posts: 1,130
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Stifmeister2 View Post
I did the edit for my vbadvanced index but I still get the error. The first time I play everything goes just fine. But the next time I play I always get the same errror (score not submitted from the game).

It's a v33 game called "Meredes Drift" (downloaded from ibparcade.com). I use IE7 (if it matters).

The same thing goes for every member I think, first score is ok, then none of the scores are saved..
Thats the problem with v32,v33 games...

It will only let you submit one time,,,then you just about have to log out and back in before it will save your score again for that game...

Now thats Secure...lmao
Reply With Quote
  #17  
Old 05-30-2007, 08:27 PM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

multiple scores work fine here with secure game, sorry ... need to test this on some other site I think
Reply With Quote
  #18  
Old 05-30-2007, 09:04 PM
Stifmeister2 Stifmeister2 is offline
 
Join Date: Feb 2006
Location: Finland
Posts: 755
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have 2 secure games, and the other one (v32 game) works just fine, but the other one (v33) only lets me save 1 score. (Haven't tested if it works again if I log out and log back in.)


Mr. Zeropage could you please test THIS GAME on your board to see if it's a error in the game or something wrong on my forum? I deleted the game already cause our board members got frustrated when their good scores weren't saved. Try to play it 2-3 times in a row and see if you can get more than 1 score saved.
Reply With Quote
  #19  
Old 05-31-2007, 08:42 PM
Kacela's Avatar
Kacela Kacela is offline
 
Join Date: Mar 2005
Location: Connecticut, USA
Posts: 88
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PM sent!
Reply With Quote
  #20  
Old 08-26-2007, 11:11 PM
Curious Too Curious Too is offline
 
Join Date: Jun 2006
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Was this issue ever resolved? None of the scores for V32 or V33 games will submit. There are no error messages during the installation. I do not have vbadvanced or any other portal installed. I am using ibProArcade v2.6.3+.
Reply With Quote
  #21  
Old 08-27-2007, 05:32 AM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is working fine in v2.6.3+ re-install such game to make sure it really gets installed correctly and then it will work.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:50 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04687 seconds
  • Memory Usage 2,307KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete