Argument: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "[[Script (File)|" to "[[Script File|") |
Lou Montana (talk | contribs) m (Text replacement - "<tt>([a-zA-Z0-9\. _"\\']+)<\/tt>" to "{{hl|$1}}") |
||
Line 10: | Line 10: | ||
== Access == | == Access == | ||
In the script the argument can be accessed using the [[Magic Variables|magic variable]] | In the script the argument can be accessed using the [[Magic Variables|magic variable]] {{hl|_this}}. | ||
== See also == | == See also == |
Revision as of 23:55, 15 November 2021
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.