Skip to content

Boolean Value Type

Doink Oink edited this page Sep 11, 2025 · 8 revisions

Bool

mcm_bool
_config.set_value("Bool", "testBool", {
	"name" = "Test Bool",
	"tooltip" = "The first test bool",
	"default" = false,
	"value" = false
})
  • Section - "Bool"
  • "name" - The friendly name of the value that will be displayed in the configuration menu.
  • "tooltip" - A short description of the value that will be displayed when hovering over the name in the configuration menu.
  • "default" - The default value that the player can revert back to in the configuration menu.
  • "value" - The current value that is set.

Up next: Keycode Value Type >

Clone this wiki locally