slidersConfiguration

How do I change the task cancellation button?


0r-fishingv2/config/config.lua
---@field table Key configuration for canceling actions.
--- Defines which key is used to cancel active actions (e.g., crafting, progress bars).
--- index: GTA key index | https://docs.fivem.net/docs/game-references/controls/
--- name: Display name shown to player
--- code: Key code reference | https://www.toptal.com/developers/keycode
--- Default: X key
Config.CancelKey = {
    index = 73, 
    name = "X",
    code = "KeyX",
}

How to enabled and customize Drawtext


0r-fishingv2/config/config.lua
---@field string Text drawing system for UI elements.
--- Determines which system is used to display interaction text on screen.
--- Supported: ox_lib, okokTextUI, ps-ui, qb-core
--- Use "auto" to automatically detect an available system.
--- Default: auto
Config.DrawText = "auto"

---@field string Interaction key label displayed to players.
--- This text appears on screen when the player can interact with something.
--- Example: "[E]"
--- Default: [E]
Config.InteractionKeyLabel = "[E]"

---@field number Interaction key index.
--- GTA control index for the interaction key.
--- Default corresponds to "E".
--- Default: 38
Config.InteractionKeyIndex = 38

How to enabled and customize Target


How to enabled and customize Radialmenu


What is the purpose of bot rental settings?


Last updated