To properly display this page you need a browser with JavaScript support.
×
Меню
Индекс
Поиск
Поиск
Поиск
Сказ про Бамп 5.4
Раздел 2. Практический
TES CS
TES CS MSFD 8.2 rus (9.0 eng)
MSFD Основной раздел
MSFD Общая информация
MSFD Создание булевых операторов
MSFD Constructing Boolean operations
Предыдущая
Следующая
To properly display this page you need a browser with JavaScript support.
MSFD Constructing Boolean operations
Unfortunately there are no Boolean operators (AND, OR, NOT, XOR, …) in the scripting language. Thus you need to construct these yourself using if… elseif structures.
Instead of AND:
if ( variable1 AND variable2 ); does not exist
[do something]
endif
you have to use:
If ( variable1 )
If ( variable2 )
[do something]
endif
endif
For OR constructs:
if ( variable1 OR variable2 )
[do this]
endif
you can use elseif constructions:
If ( variable1 )
[do this]
elseif ( variable2 )
[do this]
endif