Statement
From Bohemia Interactive Community
A statement is a piece of scripting code. It is an instruction to the script interpreter and tells it to do something.
Contents |
[edit]
Types of Statements
A statement can be:
[edit]
Value Assignment
A value assignment to a variable.
_variable = ...
[edit]
Control Structure
Any control structure including its blocks.
if (_value > _limit) then { hint "oh no"; }
[edit]
Command
Any scripting command including its arguments.
player sideChat "hello";

