// Calculation file

// Application provided values:
// - NumPlayers:	Number of Players
// - TotalScore:	Total Score of All Players
// - Total:		Total Score for this player
// - Score Variables:	Any variables created from type value of kills structure (kills, deaths, suicides, captures)
// When suicide remember that the varialbe Suicide is always 0 or negative, so inverse any addition/subtraction that
// goes by the NUMBER of suicides.

"((Kill-Suicide)*100)/(Kill-Suicide+Death)","Efficiency"
"Kill-Suicide","Frags"
"Total/(TotalScore/NumPlayers)","Rel. Score"
"Kill-(Death+Suicide)","Rank"
"Total/MapsPlayed","AvgScore"