True
From EventScripts Community Encyclopedia
|
[edit] DescriptionTrue 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 [edit] Conversionsstr(True) == 'True' int(True) == 1 float(True) == 1.0 bool(True) == True not True == False |
|
