Argument: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<tt>([a-zA-Z0-9\. _"\\']+)<\/tt>" to "{{hl|$1}}")
m (Some wiki formatting)
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
'''Example:'''
'''Example:'''


[variable, 5, "string"] [[execVM]] "myScript.sqf"
<sqf>[variable, 5, "string"] execVM "myScript.sqf"</sqf>


The [[Array]] <tt>[variable, 5, "string"]</tt> and the contained values are called the arguments given to the script.
The [[Array]] {{hl|[variable, 5, "string"]}} and the contained values are called the arguments given to the script.


== Access ==
== Access ==

Latest revision as of 01:40, 22 July 2022

An argument is any value that is being passed to a scripting command or an executed script or function. In the script or function this value is considered a parameter.


Example:

[variable, 5, "string"] execVM "myScript.sqf"

The Array [variable, 5, "string"] and the contained values are called the arguments given to the script.

Access

In the script the argument can be accessed using the magic variable _this.

See also