In the Score.txt edit for the index.php.
Change this:
Code:
$act = $_GET[act];
$autocom = $_GET[autocom];
$showuser= $_GET[showuser];
if($act == "Arcade" || $autocom=="arcade") {
include "arcade.php";
exit();
}
to this:
Code:
$act = $_GET['act'];
$autocom = $_GET['autocom'];
$showuser= $_GET['showuser'];
if($act == "Arcade" || $autocom=="arcade") {
include "arcade.php";
exit();
}