BIS fnc kbTopicConfig: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> " to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| tkoh |Game name=
| tkoh


|1.00|Game version=
|1.00


|gr1 = Conversations |GROUP1=
|gr1 = Conversations


| Reads the [[Config|configs]] to return a matching <tt>config [[config greater greater name|&gt;&gt;]] [[Description.ext#CfgSentences|CfgSentences]] [[config greater greater name|&gt;&gt;]] missionName [[config greater greater name|&gt;&gt;]] topic</tt> entry.
| Reads the [[Config|configs]] to return a matching <tt>config [[config greater greater name|&gt;&gt;]] [[Description.ext#CfgSentences|CfgSentences]] [[config greater greater name|&gt;&gt;]] missionName [[config greater greater name|&gt;&gt;]] topic</tt> entry.
{{Informative | [[Config]]s are checked in that order: [[configFile]], [[campaignConfigFile]], [[missionConfigFile]].}}
{{Informative | [[Config]]s are checked in that order: [[configFile]], [[campaignConfigFile]], [[missionConfigFile]].}}
{{Important | This function is intended to be used by [[BIS_fnc_kbTell]] only.}} |DESCRIPTION=
{{Important | This function is intended to be used by [[BIS_fnc_kbTell]] only.}}


| [missionName, topic] call [[BIS_fnc_kbTopicConfig]] |SYNTAX=
| [missionName, topic] call [[BIS_fnc_kbTopicConfig]]


|p1= missionName: [[String]] |PARAMETER1=
|p1= missionName: [[String]]


|p2= topic: [[String]] |PARAMETER2=
|p2= topic: [[String]]


| [[Config]] - the topic's config entry. [[nil]] on error or not found |RETURNVALUE=
| [[Config]] - the topic's config entry. [[nil]] on error or not found


|x1= <code>[[private]] _configTopic = ["missionName", "topic"] [[call]] [[BIS_fnc_kbTopicConfig]];</code> |EXAMPLE1=
|x1= <code>[[private]] _configTopic = ["missionName", "topic"] [[call]] [[BIS_fnc_kbTopicConfig]];</code>


| [[Conversations]] [[BIS_fnc_kbTell]] |SEEALSO=
| [[Conversations]] [[BIS_fnc_kbTell]]
}}
}}


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:{{Name|arma3}}: Functions|{{uc:kbTopicConfig}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:kbTopicConfig}}]]

Revision as of 00:11, 18 January 2021

Hover & click on the images for description

Description

Description:
Reads the configs to return a matching config >> CfgSentences >> missionName >> topic entry.
This function is intended to be used by BIS_fnc_kbTell only.
Execution:
call
Groups:
Conversations

Syntax

Syntax:
[missionName, topic] call BIS_fnc_kbTopicConfig
Parameters:
missionName: String
topic: String
Return Value:
Config - the topic's config entry. nil on error or not found

Examples

Example 1:
private _configTopic = ["missionName", "topic"] call BIS_fnc_kbTopicConfig;

Additional Information

See also:
Conversations BIS_fnc_kbTell

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Bottom Section