Boolean: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (andere Sprache hinzugefügt)
Line 10: Line 10:


[[ru:Boolean]]
[[ru:Boolean]]
[[de:Boolean]]

Revision as of 09:32, 21 August 2012

A boolean or bool is a datatype whose value can be either true or false. These are often returned by functions to indicate whether the operation was successful or not.

Using the lua functions tostring() and type() can help you to find out what datatype something is:

local theReturn = isPedDead(getRandomPlayer())
outputChatBox("The reurn was: "..tostring(theReturn)) -- Will say: "true" or "false"
outputChatBox("The datatype of this return was: "..type(theReturn)) -- Will say "boolean"