getFSMVariable: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (template:command argument fix)
m (Some wiki formatting)
 
(47 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma2 |= Game name
|game1= arma2
|version1= 1.00


|1.00|= Game version
|game2= arma2oa
____________________________________________________________________________________________
|version2= 1.50


| Return the value of variable in the variable space of given FSM. The FSM handle is the number returned by the execFSM command. |DESCRIPTION=
|game3= tkoh
____________________________________________________________________________________________
|version3= 1.00


| FSMhandle '''getFSMVariable''' name |SYNTAX=
|game4= arma3
|version4= 0.50


|p1= FSMhandle: [[Number]] -  |PARAMETER1=  
|gr1= Variables


|p2= name: [[String]] - name of the variable |PARAMETER2=
|descr= Return the value of variable in the variable space of given FSM. The FSM handle is the number returned by the [[execFSM]] command.


|p3= |PARAMETER3=  
|s1= FSMhandle [[getFSMVariable]] name


| [[Anything]] |RETURNVALUE=
|p1= FSMhandle: [[Number]]


| s2= FSMhandle '''getFSMVariable''' [name, defaultValue]        (''Since Arma 3 v1.67'') |SYNTAX=
|p2= name: [[String]] - name of the variable


|p21= [name, defaultValue]: [[Array]] -  |PARAMETER2=
|r1= [[Anything]]


|p22= FSMhandle: [[Number]] -  |PARAMETER1=
|s2= FSMhandle [[getFSMVariable]] [name, defaultValue]


|p23= name: [[String]] - name of the variable  |PARAMETER2=  
|s2since= arma3 1.68


|p24= defaultValue: [[Anything]] - value to return if variable is [[nil]]|PARAMETER3=
|p21= FSMhandle: [[Number]]


| r2= [[Anything]] |RETURNVALUE=
|p22= name: [[String]] - name of the variable


|p23= defaultValue: [[Anything]] - value to return if variable is [[nil]]


|x1= <code>_handle [[getFSMVariable]] "_foo";</code>|EXAMPLE1=
|r2= [[Anything]]
|x2= <code>_handle [[getFSMVariable]] ["_foo", 123];</code>|EXAMPLE1=
____________________________________________________________________________________________


| [[FSM]], [[commandFSM]], [[completedFSM]], [[doFSM]] [[execFSM]], [[setFSMVariable]] |SEEALSO=  
|x1= <sqf>_handle getFSMVariable "_foo";</sqf>


| |MPBEHAVIOUR=  
|x2= <sqf>_handle getFSMVariable ["_foo", 123];</sqf>
____________________________________________________________________________________________
 
|seealso= [[FSM]] [[commandFSM]] [[completedFSM]] [[doFSM]] [[execFSM]] [[setFSMVariable]]
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style='display:none'>Bottom Section</h3>
[[Category:ArmA 2: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Latest revision as of 22:25, 4 September 2022

Hover & click on the images for description

Description

Description:
Return the value of variable in the variable space of given FSM. The FSM handle is the number returned by the execFSM command.
Groups:
Variables

Syntax

Syntax:
FSMhandle getFSMVariable name
Parameters:
FSMhandle: Number
name: String - name of the variable
Return Value:
Anything

Alternative Syntax

Syntax:
FSMhandle getFSMVariable [name, defaultValue]
Parameters:
FSMhandle: Number
name: String - name of the variable
defaultValue: Anything - value to return if variable is nil
Return Value:
Anything

Examples

Example 1:
_handle getFSMVariable "_foo";
Example 2:
_handle getFSMVariable ["_foo", 123];

Additional Information

See also:
FSM commandFSM completedFSM doFSM execFSM setFSMVariable

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