Quote:
Yesterday at 11:59 PM BrAinZ said this in Post #1219
Ahhh.. JOUST!! Love the game!
Anyone any ideas on the correct variables to use to make it work?
|
The score variable for Joust is _root.score
You will have to define it in the proarcade code like this:
Code:
var score = _root.score;
scorevariable = score;
Use this code for a button:
Code:
on(release){
var score = _root.score;
// set up vars to return
vpaver = "100B2";
scorevariable = score;
action = "gameover";
game = gamename;
score_loc = location + "/proarcade.php";
// this needs to match the Admin CP value
// and should be between 0 and 31
hashoffset = 5;
// do security shuffle to return newhash
subhash1 = gamehash.substr(0,hashoffset);
subhash2 = gamehash.substr(hashoffset);
newhash = subhash2.concat(subhash1);
// redirect back to vbProArcade
getURL (score_loc, "_self", "POST");
}