Firstly.......Great work Mr Z & all your helpers.
I'm using vBadvanced and found the code below allows scores to be saved, I did edit out the first section of it though as it was giving me errors, all seems to be in order now.
Code:
//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();
}
Just put that at the top of the cmps index.php file under <?php
Then upload it and all should be fine