| Play day
| Which day the games will be played? Assume you select Wednesday. When adding games the default date will be last Wednesday.
|
| Average points
| Does a player get an extra point if he plays better than his average. This is important for the score, matrix report and the games per player. This is only valid if "10 points system" and "Special Points System" have their value set to NO.
|
| Store misses
| Do you want to store made misses? If yes, then the misses do appear in the results per player report.
|
| Store highest break
| Do you want to store the highest break? If yes, then the highest break does appear in the results per player report.
|
| 10 points system
| Do you work with the 10 points system? If yes, then a player receives "10*caroms made/caroms to make" as game points (truncated). This is only valid if "Special Points System" is NO.
|
| Special Points System
| Special function made by and for the user. Default now is 0.
|
| Win,Draw,Loss
| If yes, these fields appear in the results per player report.
|
| Check game.
| Must the program check whether or not the game is over yet? (at least one of both players did make his caroms)? Only select no if you have a time limit. The one with the highest percentage of caroms (caroms made/caroms to make) is the winner.
|
| Maximum innings
| What is the maximum number of innings a game can last? If you want to stop the games after a certain number of innings, you can store the maximum number of innings. More innings are not allowed in played games. If the played innings are equal to the maximum number of innings, sometimes the game is not over. The one with the highest percentage of caroms (caroms made/caroms to make) is the winner.
|
| Change period
| The default period. This will be used if asked for a period, for example a matrix report. This is also the default period, if not played yet, for adding games.
|
| Change maximum period
| The number of periods per season. This is the maximum period you can select in matrix report for example.
|
| Average update formula
| If all games in a certain period or season are played, you usually update all averages. How to do so is described in this formula. You can use the following constants and functions:
- _CP: Current period
- _MP: Maximum period
- _CM: Current average
- Moy(x,y): Average of period x till y inclusive. If x>y than average of period y till x inclusive.
- Moy(x): Average of period x.
- AvgMoy(x,y): Average average of period x till y inclusive. If x>y than average average from period y till x inclusive.
- AvgMoy(x): Average of period x. This is the same as Moy(x).
- Place(x,y): Player's place in the score (for example winner(1) or runner up(2)) if you only count period x till y inclusive.
- Place(x): Player's place in the score (for example winner(1) or runner up(2)) if you only count period x.
See also Tips and tricks.
|
| Special Points Formula
| Game points computed by a formula. The following constants can be used:
- _C: Caroms
- _B: Innings
- _HS: Highest break
- _PDL: Misses
- _GP: Game Points (win=2,draw=1,loss=0)
- _MP: Average points
- _PNT10: Ten Points System
- _UIT: Is the game over (.T. or .F.)
- _M2M: Average to make
- _C2M: Caroms to make
- _aC: Caroms opponent
- _aHS: Highest break opponent
- _aPDL: Misses opponent
- _aMP: Average points opponent
- _aPNT10: Ten Points System opponent
- _aM2M: Average to make opponent
- _aC2M: Caroms to make opponent
|
Fixed amount of innings
| You play a fixed amount of innings.
This is equal to "maximum innings". The one with the highest percentage of caroms (caroms made/caroms to make) is the winner.
Of course there's no check if one of the players made their caroms.
|
Complete last inning
| Each player may complete his last inning when he reaches his "caroms to make".
The one with the highest percentage of caroms (caroms made/caroms to make) is the winner.
|
Date format
| Here you can change the date format, for example: dd-mm-yyyy or yy/mm/dd
|
Club name
| You can here fill in your club name. This name will appear on all reports and on the screen. Now you can manage more clubs very easy.
|
Special characters output
| That replaces the "Box drawing characters" to normal characters. So you can open your output now from any windows word processor. After that you can change the FONT, MARGINS, FONT-SIZE and even print LANDSCAPE.
|
| Formula: | Description: |
| IF(_CP=_MP,Moy(1,_CP),_CM) | Only update at end of season. |
| Moy(1,_CP) | Update each period. |
| Moy(_CP) | Update each period. The new average will be determined by selecting only the last period. |
| MAX(AvgMoy(1,_CP),_CM) | Update each period. The new average is the average average of all periods. The average isn't allowed to get a lower value. |
| (Moy(_CP)+_CM)/2 | Update each period. The new average will be determined by the last period's average and the current average. |
| (Moy(_CP)+_CM)/2*IF(Place(_CP)=1,1.1,1) | Update each period. The new average will be determined by the last period's average and the current average. If he is the current period's winner, his average will be 10 percent higher (*1.1). |