Parameter: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
 
mNo edit summary
Line 5: Line 5:


  [5, "string"] execVM "script.sqf"
  [5, "string"] execVM "script.sqf"


script.sqf
script.sqf
  _number = _this select 0;
  _number = _this select 0;
  _string = _this select 1;
  _string = _this select 1;

Revision as of 01:34, 22 December 2006

A parameter is a value that was passed to the actual script. All parameters (if any) are accessible over the array _this.


Example:

[5, "string"] execVM "script.sqf"


script.sqf

_number = _this select 0;
_string = _this select 1;

_number and _string are considered the parameters of the script.

See also