Hi guys, how to make the conversations described in
https://community.bistudio.com/wiki/Conversations using https://community.bistudio.com/wiki/BIS_fnc_showSubtitle
I only found a mention here
In an addon/mod scope, an additional subtitle entry is available to have subtitle rendered with BIS_fnc_showSubtitle: textPlain, declared as shown.
This is not available for standard missions as BIS_fnc_kbTellLocal only checks configFile and none of missionConfigFile or campaignConfigFile.
example recording;
class Sentences
{
class Sentence1
{
text = ""; // must be empty
textPlain = $STR_MySubTitle; /* other parameters */
};
};