Quote:
Originally Posted by utw-Mephisto
I DO have an index.php ... it is still not working ...
See for yourself :
ut2007world.com/arcade.php (open for guests)
|
You have to insert the ibProArcade-Code at the very beginning of the file:
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 01:24, Fri Nov 25th 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