Statement

From Bohemia Interactive Community
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

A statement is a piece of scripting code. It is an instruction to the script Interpreter and tells it to do something.


Types of Statements

Value Assignment

A value assignment to a variable.

_variable = 5;

Control Structure

Any control structure including its blocks.

if (_value > _limit) then { hint "oh no"; };

Command

Any scripting command including its arguments.

player sideChat "hello";