Radio codes
In MDT's sidebar, players can find "Radio codes" tab, where they can check or find all radio codes, that are specified in configuration file.
Below you can find example of how to create codes category and add items to it.
Locate
Config.RadioCodesin your config file.Create new object inside
RadioCodestable.Each category must have three properties:
name- This can't be used multiple times as it's used to identify given codes categorylabel- What you put here, will be used when displaying the category in MDT "Radio codes" tabitems- In this table, you will create objects with all codes from given category
To add items to category, create new object in items and add these properties:
label- Highlighted label of radio codedescription- Here you can describe, what given code means
Config.RadioCodes = {
{
name = "example",
label = "Example",
items = {
label = "Example 1.1",
description = "Description of Example 1.1"
}
}
}Last updated