Hello.
In Studio Doc (https://en.doc.boardgamearena.com/Game_ ... ts.inc.php) it is said that we can have label instead of int in the stats.
The example is :
I understand that this should be placed in the "stats.inc.php" file but then how do I get it to work (i.e. : display the string in final stats) ? The source code for "Terra mystica" (listed as an example) is not available.
Thank you
In Studio Doc (https://en.doc.boardgamearena.com/Game_ ... ts.inc.php) it is said that we can have label instead of int in the stats.
The example is :
Code: Select all
"value_labels" => array(
11 => array(
0 => totranslate("None (or tied)"),
1 => totranslate("Auren"),
2 => totranslate("Witches"),
3 => totranslate("Fakirs"),
4 => totranslate("Nomads"),
5 => totranslate("Chaos Magicians"),
6 => totranslate("Giants"),
7 => totranslate("Swarmlings"),
8 => totranslate("Mermaids"),
9 => totranslate("Dwarves"),
10 => totranslate("Engineers"),
11 => totranslate("Halflings"),
12 => totranslate("Cultists"),
13 => totranslate("Alchemists"),
14 => totranslate("Darklings"),
),
)Thank you