False

From EventScripts Community Encyclopedia

Description

False is a boolean value.

It is typically returned by some methods to signify failure.

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

The opposite value is True

Conversions

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