Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
DialogueBaseElement.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
13sealed class DialogueBaseElement: ScriptAndConfig
14{
15 /*
16 For Script to signal the use of any Variable declared in a Dialogue,
17 declare an Attribute of type 'string', add it to the "Variables" category
18 and set in parameters what type it expects to use.
19 Currently available types: bool, int, float, vector3, string
20 This string will be used to match with the name of the Variable in the Dialogue.
21 Transition Rules don't have the ability to modify variable values.
22 e.g.:
23 [Attribute("", UIWIdgets.SearchComboBox, "MyEditorName", category: "Variables", params: "variableType=int")}
24 string VARIABLE_NAME;
25 */
26 private void DialogueBaseElement();
27 private void ~DialogueBaseElement();
28
29 /*
30 Retrieves the value of the Dialogue variable which's name matches the provided one.
31 Returns false if no such variable exists or if the 'value' output variable's type doesn't match the Dialogue variable's type.
32 */
33 proto bool GetVariable(string name, out void value);
34}
35