Statistics Client APISubmitting statistics from your game using the Client API couldn't be easier. Make sure you have read the documentation about how to define statistics for your game on the Kongregate servers. Submitting statistics
The API for submitting a statistic to our servers is very simple. The submit(statName:String,value:Number):void
Example: Submit various statistics to the server kongregate.stats.submit("Coins",1); // The user collected a coin kongregate.stats.submit("MonstersKilled",1); //The user killed a monster kongregate.stats.submit("HighScore",398); //The user got a score of 398 kongregate.stats.submit("LapTime",60); //User finished a lap in 60 seconds |