Keybind

Updated for version 3.36.

It's recommended to first read about the base item before reading about other items https://luffyyy.gitbook.io/beardlib/menuui/menuui-item

Keybind

Creation

MyRandomMenu:Keybind({
    name = "MyKeybind",
    text = "Keybind item",
    value = "f1",
    on_callback = ClassClbk(self, "MyClbk")
})

Parameters

ParameterReturn TypeDescription

value

String

The keybind key. Defaults to none

supports_keyboard

Boolean

Should the item listen to the keyboard? Defaults to true and the value can be inherited

supports_mouse

Boolean

Should the item listen to the mouse? Defaults to false and the value can be inherited

Functions

Get

FunctionReturn TypeDescription

Value()

String

Returns the keybind as a string

GetKeyBind()

Idstring

Returns the keybind but in idstring form

Set

FunctionDescription

SetValue(String value, Boolean run_callback)

Sets the value of the item. value is the keybind key and run_callback decides whether to run the callback after the value is set

Last updated