Nếu tuyên bố tạo ra các chi nhánh và các công tắc của Xtscript của bạn
[...] = optional ... = your valueif not ... or not ...
...
[else
...]
endif
Code ví dụ:
<!--parser:xtscript-->
var $x = call mt_rand $min=1;$max=2
var $y = call mt_rand $min=1;$max=2
# If not ... Or not...
# simulates $x == 1 and $y == 1
if not $x == 1 or not $y == 1
print One of \$x or \$y is not equal to 1
else
print Both \$x and \$y are equal to 1
endif