-
Notifications
You must be signed in to change notification settings - Fork 11
Configuration
Avi Aryan edited this page Dec 14, 2015
·
3 revisions
This page provides help on how you can configure Brain Games.
There are 4 main settings you can change.
- gameTime - Number of seconds a game should last
- positive - Score given for each correct answer
- negative - Score given for each wrong answer
- numQuestions - Number of questions to be asked
You can configure these settings for each game individually.
"_dictionary": {
"numQuestions": 5,
"scores": {
"2015-12-11": 30,
"2015-12-12": 100
}
},
"_scrabble": {
"gameTime": 30,
"negative": -5,
"scores": {
"2015-12-09": 180,
"2015-12-10": 160,
"2015-12-12": 140
}
},
"gameTime": 45,
"negative": -20,
"positive": 10
}
In the above example, the game time of Scrabble
has been set to 30 seconds and the number of questions to be asked in Dictionary Game
is set to 5.
- As Dictionary Game has no time limit, so
gameTime
setting has no effect on it. Similary other games likeScrabble
,Color Match
are independent of thenumQuestions
setting.