2 things I found that are somehow not correct.
1. In the install file it says you use "jackpotinc" a few times where it should be "jackpotadd" which is what you use.
2. Updating the main arcade options didn't work anymore so instead of replacing the sql queries I just put the new stuff before this stuff:
PHP Code:
.iif(($scoreicon != "") || ($deletescoreicon == 1),",scoreiconname='$scoreicon_name', scoreicondata='$scorei_d'","")."
".iif(($kingicon != "") || ($deletekingicon == 1),",kingiconname='$kingicon_name', kingicondata='$kingi_d'",",
You should look at those parts.
Also this is not correct in the upgrade from my hack instructions:
-+-+-+
Find:
-+-+-+
PHP Code:
$playcost = $gameinfo[playcost];
$jackpot = $gameinfo[jackpot];
$jackpotinc = $gameinfo[jackpotinc];
$storepoints = $DB_site->query_first("SELECT storep FROM user WHERE userid=$bbuserinfo[userid]");
$points=$storepoints[storep];
if ($points > 0)
{$points -= $playcost;
$DB_site->query("UPDATE user SET storep=$points WHERE userid=$bbuserinfo[userid]");
$jackpot += $playcost + $jackpotinc;
$DB_site->query("UPDATE arcadegames SET jackpot=$jackpot WHERE name='$game'");
// query string and param lists must be eval'd since it contains PHP vars
eval("\$vpa_qstring = \"$gameinfo[querystring]\";");
eval("\$vpa_oparams = \"$oparams\";");
eval("\$vpa_eparams = \"$eparams\";");
// get the code to call the game, then send the page
eval("\$gamecode = \"".gettemplate("vbproarcade_playgame_flashcode")."\";");
eval("dooutput(\"".gettemplate('vbproarcade_playgame')."\");");
}
else
{eval("dooutput(\"".gettemplate('vbproarcade_playgame_nopoints')."\");");}
-+-+-+-+-+-+
REMOVE IT!
-+-+-+-+-+-+
It should be:
-+-+-+
Find:
-+-+-+
PHP Code:
$playcost = $gameinfo[playcost];
$jackpot = $gameinfo[jackpot];
$jackpotinc = $gameinfo[jackpotinc];
$storepoints = $DB_site->query_first("SELECT storep FROM user WHERE userid=$bbuserinfo[userid]");
$points=$storepoints[storep];
if ($points > 0)
{$points -= $playcost;
$DB_site->query("UPDATE user SET storep=$points WHERE userid=$bbuserinfo[userid]");
$jackpot += $playcost + $jackpotinc;
$DB_site->query("UPDATE arcadegames SET jackpot=$jackpot WHERE name='$game'");
// query string and param lists must be eval'd since it contains PHP vars
eval("\$vpa_qstring = \"$gameinfo[querystring]\";");
eval("\$vpa_oparams = \"$oparams\";");
eval("\$vpa_eparams = \"$eparams\";");
// get the code to call the game, then send the page
eval("\$gamecode = \"".gettemplate("vbproarcade_playgame_flashcode")."\";");
eval("dooutput(\"".gettemplate('vbproarcade_playgame')."\");");
}
else
{eval("dooutput(\"".gettemplate('vbproarcade_playgame_nopoints')."\");");}
-+-+-+-+-+-+
Replace with:
-+-+-+-+-+-+
PHP Code:
// query string and param lists must be eval'd since it contains PHP vars
eval("\$vpa_qstring = \"$gameinfo[querystring]\";");
eval("\$vpa_oparams = \"$oparams\";");
eval("\$vpa_eparams = \"$eparams\";");
// get the code to call the game, then send the page
eval("\$gamecode = \"".gettemplate("vbproarcade_playgame_flashcode")."\";");
eval("dooutput(\"".gettemplate('vbproarcade_playgame')."\");");