Hello,
I've got a question about tmdisplay in gameoptions.inc.php, here is mine :
I've got two options : Game setup (Base game or Base game + an expansion) and Hard mode with different values.
I want to display in the lobby "Game setup"'s value + "Hard mode"'s value, for example :
"Base game" "Nationwide Epidemic + Resistant Superbug"
But, with this configuration, it only displays "Nationwide Epidemic + Resistant Superbug".
Is it possible to have both options's tmdisplay ?
I've got a question about tmdisplay in gameoptions.inc.php, here is mine :
Code: Select all
100 => array(
'name' => totranslate('Game setup'),
'values' => array(
0 => array( 'name' => totranslate('Dice Hospital'),
'tmdisplay' => totranslate('Base game')),
1 => array( 'name' => totranslate('Dice Hospital + Experimental Medicine Mini-expansion'),
'tmdisplay' => totranslate('Experimental Medicine'),
'nobeginner' => true
),
),
),
101 => array(
'name' => totranslate('Hard mode'),
'values' => array(
0 => array( 'name' => totranslate('Disabled'),
'tmdisplay' => totranslate(''),
),
1 => array( 'name' => totranslate('Opening crisis'),
'tmdisplay' => totranslate('Opening crisis'),
),
2 => array( 'name' => totranslate('Nationwide Epidemic'),
'tmdisplay' => totranslate('Nationwide Epidemic'),
),
3 => array( 'name' => totranslate('Resistant Superbug'),
'tmdisplay' => totranslate('Resistant Superbug'),
),
4 => array( 'name' => totranslate('Opening crisis + Nationwide Epidemic'),
'tmdisplay' => totranslate('Opening crisis + Nationwide Epidemic'),
),
5 => array( 'name' => totranslate('Opening crisis + Resistant Superbug'),
'tmdisplay' => totranslate('Opening crisis + Resistant Superbug'),
one.')
),
6 => array( 'name' => totranslate('Nationwide Epidemic + Resistant Superbug'),
'tmdisplay' => totranslate('Nationwide Epidemic + Resistant Superbug'),
),
7 => array( 'name' => totranslate('Opening crisis + Nationwide Epidemic + Resistant Superbug'),
'tmdisplay' => totranslate('Opening crisis + Nationwide Epidemic + Resistant Superbug'),
),
), I want to display in the lobby "Game setup"'s value + "Hard mode"'s value, for example :
"Base game" "Nationwide Epidemic + Resistant Superbug"
But, with this configuration, it only displays "Nationwide Epidemic + Resistant Superbug".
Is it possible to have both options's tmdisplay ?