HU/Boolean
Jump to navigation
Jump to search
A boolean vagy bool egy adattípus, melynek értéke lehet igaz vagy hamis. Ezeket gyakran a funkciók adják vissza, hogy a művelet sikeres volt-e, vagy sem.
Using the lua functions tostring() and type() can help you to find out what datatype something is:
local theReturn = isPedDead(getRandomPlayer()) outputChatBox("The return was: "..tostring(theReturn)) -- Will say: "true" or "false" outputChatBox("The datatype of this return was: "..type(theReturn)) -- Will say "boolean"
Reversing bools
bool = true -- if you want to reverse it you can either do bool = false -- or bool = not bool
Fordította
Surge