minetest.setting_getbool
From Minetest Developer Wiki
![]() |
This page has been proposed for deletion for the following reason: " Deprecated in favour of minetest.Settings" If you don't think that this page should be deleted, please explain why on the talk page. |
Contents |
Syntax
minetest.setting_getbool("name")
Description
Returns either the boolean that is stored in minetest.conf under name, or nil if the variable is not found.
This function reads a string. If the string equals any of y
, yes
, true
, or 1
, then it is considered true; else, it is considered false.
Example
local dmg = minetest.setting_getbool("enable_damage") if (dmg == nil) then -- Set up a suitable default value dmg = true end if (dmg) then player:sethp(player:gethp() - 1) end