"TribeScoreFormula": "((SUM(PlayerKills)*3) - SUM(TotalDeaths) + (SUM(MinutesPlayed)/60)) / COUNT(*)", //Formula to calculate the Tribe Score
//You can use any of the database column names in the formula and the formula must return a single value
//COUNT(*) is the number of players in the tribe
//SUM() is the total of the stat column for all players in the tribe
//You can use +, -, *, / in the formula
//You can use () to group parts of the formula
//The above example formula is "((Total Player Kills * 3) - Total Deaths + (Total Minutes Played / 60)) / Number of Players"