True

From EventScripts Community Encyclopedia

Description

True is a boolean value.

It is typically returned by some methods to signify success.

Conditional command if automatically casts the expression into boolean type and if the value is True, the block underneath is executed.

The opposite value is False

Conversions

str(True)   == 'True'
int(True)   == 1
float(True) == 1.0
bool(True)  == True
not True    == False
blog comments powered by Disqus