๐qb-commandbinding
Quickly bind commands to hotkeys
Introduction
Allows users to bind keys to the keys F2-F9 can also be changed in the "Fivem" section of GTAV "keybinds" menu
Preview

Configuration
Adding available keys to bind (found in client/main.lua)
Currently must add additional keys to the html and JavaScript files
local availableKeys = { -- https://docs.fivem.net/docs/game-references/controls/
{289, "F2"}, -- Corresponding control and label
{170, "F3"},
{166, "F5"},
{167, "F6"},
{168, "F7"},
{56, "F9"},
{57, "F10"},
}
Last updated