in your zip folder there is a file that states CMPS or vbad ONLY something to that effect anyway....you have to open it and it will tell you that the code below goes to the top of your alternate index page.....
like my vbulletin index page i changed to forum.php and my vbad page i changed to index.php
the code should go to the top of the vbad/portalindex.php page right under the <php?
mine looks like this....
Code:
<php?
// 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
// ++=========================================================================++
// || vBadvanced CMPS v2.2.0 (vB 3.6) - 30544
// || ? 2003-2004 vBadvanced.com & PlurPlanet, LLC - All Rights Reserved
// || This file may not be redistributed in whole or significant part.
// || http://vbadvanced.com
// || Downloaded 22:31, Tue Jul 4th 2006
// ||
// ++ ========================================================================++
that should work....i realized i had mine on the wrong page lol or at least i think i do....i will check brb