Argument

From Bohemia Interactive Community
Revision as of 01:40, 22 July 2022 by Lou Montana (talk | contribs) (Some wiki formatting)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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