Quote:
Originally Posted by nievesidenshop
yea me too as well i did everyhting according to the coder tutorial and this is the message i get...
Code:
Board Message
Sorry, an error occurred. If you are unsure on how to use a feature, or don't know why you got this error message, try looking through the help files for more information.
The error returned was:
This score was not submitted from the game. Your score will not be saved.
that happens when the scores is trying to save.
any idea will be greatly appreciated
|
I'm still on 3.51, but perhaps it is the name of your forum home variable. This is an example of the code that gets embeded into the actionscript that allows the game to submit a score:
Code:
on (release)
{
var gname = "raidenx";
var gscore = _root.score;
getURL("index.php?act=Arcade&do=newscore", "_self", "POST");
}
So if your forum home is something other than index.php for some reason (i.e. you have some sort of CMPS system like vBAdvanced that's renamed your forum home), the path that is specified for the post function will be invalid... just a thought...