Toolshed Games score API How To.
Currently we only have an example available in AS2.
AS 2

Just add this code to your game.
It should be place when you get to Game over and have the final score.

CODE.

var ScoreAPI = new LocalConnection();

var score:NUmber=12345;
var gameMode:String="_none";
ScoreAPI.send(_root.lcName, "sendScore", score,gameMode);

12345 shold be replace with your score.
_none should be replace with the game mode that the user was playing in at the time,
eg. easy
if the score was done while playing in easy mode.

add: _lockroot=true; to the first frame of your game.

please include either the .swf file of the url where the game file can be located.

Also include what game mode you will be submitting score for.
Please use the following format
modes: easy medium hard example:

Your game can be played as easy , medium or hard

so scores are sent as

ScoreAPI.send(_root.lcName, "sendScore", 12345,"easy")
or
ScoreAPI.send(_root.lcName, "sendScore", 12345,"medium")
or
ScoreAPI.send(_root.lcName, "sendScore", 12345,"hard")

if you game does not use modes please send
modes: _none

finally please indicate if a high score is better or a low score is better

exmple
higher is better=true.


Example email

Hi,

atttach is the swf to my new game "game name".
modes:
easy
medium
hard

higher is better =false


Once you have added the code to your game please send you game to submitgames@toolshed.co.uk.

Thanks very much.