Statement

From Bohemia Interactive Community
Revision as of 03:50, 22 December 2006 by Hardrock (talk | contribs)
Jump to navigation Jump to search

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

A statement can be:

Value Assignment

An assignment of a value to a variable

_variable = ...

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";