Docs/ORB AutoWalk/Configuration

Configuration

All configuration is in config.lua (not escrowed).

Core Settings

lua
Config.Language = 'en'         -- 'en' | 'es'
Config.Debug    = false

Opening the Panel

lua
Config.Input = {
    useKeyBinding = true,      -- allow a key to open the panel
    openKey       = 288,       -- key code (288 = F1)
    useCommand    = true,      -- allow a chat command
    commandName   = 'awalk',   -- the command name
}

Auto-Walk

lua
Config.AutoWalkKeybind = {
    enabled     = true,
    key         = 'J',         -- toggle auto-walk (rebindable in FiveM settings)
    description = 'Toggle AutoWalk',
}

Config.AutoWalk = {
    walkingSpeed    = 1.0,
    turnSensitivity = 2.0,     -- A/D turn responsiveness
    walkDistance    = 1.0,
    disableControls = { 38, 23 },  -- controls that cancel auto-walk (E, F)
}

Performance

lua
Config.Performance = {
    keyCheckInterval = 100,    -- ms between key checks
    maxRecentTypes   = 5,      -- recent styles kept in the quick row
    uiUpdateDelay    = 50,     -- ms before pushing data to the UI
}

Walk Styles

Config.AvailableWalkTypes is the dictionary of selectable styles. Add or remove entries to curate the list shown in the panel.

Commands & Keybinds

InputDefaultAction
/awalkOpen / close the panel
Panel keyF1Open / close the panel
Auto-walk toggleJStart / stop auto-walking

In-panel: ESC closes, Enter selects the top search result, A/D steer while auto-walking.