-
Notifications
You must be signed in to change notification settings - Fork 4
String Value Type
github-actions[bot] edited this page May 27, 2026
·
8 revisions
_config.set_value("String", "testString", {
"name" = "Test String",
"tooltip" = "A test string",
"default" = "Hello World",
"value" = "Hello World"
})| Name | Value Type | Description |
|---|---|---|
name |
String |
The friendly name of the value that will be displayed in the configuration menu. |
toolitp |
String |
A short description of the value that will be displayed when hovering over the name in the configuration menu. |
default |
String |
The default value that the player can revert back to in the configuration menu. |
| Name | Value Type | Description |
|---|---|---|
value |
String |
The current value that is set. If this property is not present on creation it will automatically be set to the default value. |
category |
String |
The categories name to place the value in. Learn more about this property here. |
menu_pos |
Int |
Overrides the default alhpabetical sorting and places it in the given position in relation to other values with a menu_pos property. Learn more about this property here.
|