View Full Version : scores not saving when using CMPS [SOLVED]
SoftDux
05-28-2007, 07:47 AM
Hi all
I have CMPS installed in the root of my VB forum, and had to rename my VB's index.php to forum.php
The problem now is, that when a score is being submitted, it tries to submit it to index.php instead of forum.php. How to do I change it so that scores are submitted to forum.php?
MrZeropage
05-28-2007, 09:05 AM
no, games do submit to index.php, this is hardcoded in the games.
But read enclosed "vbadvanced or other portal.txt" in ibProArcade-archive :)
SoftDux
05-28-2007, 09:54 AM
Cool, thanx :)
Here's the fix, for those who are looking here as well:
// 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];
$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 modification
Original thread: https://vborg.vbsupport.ru/showthread.php?t=138328
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.