Config file

-- Fivem keyboard: https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/keyboard/

tgiCoreExports         = exports["tgiann-core"]
config                 = tgiCoreExports:getConfig()

config.lang            = "en"

-- false = disabled hotkey
-- if you are using tgiann-hotwire plst engine set to false
-- Dont use same keys
config.hotkeys         = {
    engine = "M",
    window = "RSHIFT",
    door = "RMENU",
    seat = "RCONTROL",
    trunk = false,
    hood = false,
}

-- The config.keyToText setting changes the text displayed in the UI for the buttons defined in config.hotkeys.
config.keyToText       = {
    RSHIFT = "RSHFT",
    RCONTROL = "RCTRL",
    RMENU = "RALT",
}

-- Allow seat switching via command.
config.seatCommand     = {
    active = true,
    command = "seat",
}

-- Play a progress bar when switching seats.
config.seatProgressBar = {
    active = true,
    time = 3000,
}

-- Ui open settings
config.open            = {
    key = {
        active = true,
        key = "HOME",
    },
    command = {
        active = true,
        command = "vehiclecontrol",
    }
}

config.langs           = {}

Last updated