<< Click to Display Table of Contents >> Navigation: Support > Reconfigurable Rulebook > String Formatting > Score Format |
The format of a score to display to the user. It is specified with the following code:
{i} => Display the Integer Score (I).
{d} => Display the Decimal Score (D).
{x} => Display the inner ten ring count (X)
{X} => Display an asterisk (*) if the inner ten count is greater than 0 (X).
{s} => Display the Summed Score (S). If S is not included in the score the Decimal Score is displayed instead.
{v} => Display the Variable Score (V) as a integer. If V is not included "0" is displayed.
{V} => Display the Variable Score (V) as a float rounded to 1 decimal place. If V is not included "0.0" is displayed.
All other characters are carried forward.
Consider the following Score for a series:
{
"S": 87.3,
"I": 83,
"D": 87.3
"X": 3
}
With the following formats the score would be displayed as:
“{i}” => 83
“{i} - {x}” => 83 - 3
“{d}” => 87.3
“{i}({d})” => 83(87.3)
"{x} Xs" => 3 Xs
Consider the following Score for a shot"
{
"I" : 10,
"D" : 10.3,
"X" : 1
}
With the following formats the score would be displayed as:
"{i}" => 10
"{i}{X}({d})" => 10*(10.3)
Note:
The Reconfigurable Rulebook and functionality will be implemented with the release of Orion Scoring System v. 3.0 (TBA)