Configuration
File
Scope
Description
config.lua
Config = Config or {}
-- Locale: 'en', 'zh', etc.
Config.locale = 'en'
-- Debug logging
Config.debug = false
-- Keybinding configuration
-- Key values: '' = no default binding (players bind via Settings > Key Bindings)
-- Common keys: F1-F24, HOME, END, PAGEUP, PAGEDOWN, INSERT, DELETE, PAUSE
-- Full reference: https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/keyboard/
-- Admin panel
Config.toggleCommand = 'eadmin' -- Command name
Config.toggleKeyLabel = 'Toggle Admin Panel' -- Key Bindings label
Config.toggleKey = '' -- Default key
Config.toggleKeybind = false -- Show in Settings > Key Bindings
-- Support panel
Config.supportCommand = 'support'
Config.supportKeyLabel = 'Open Support Panel'
Config.supportKey = ''
Config.supportKeybind = false
-- NoClip
Config.noClipCommand = 'noclip'
Config.noClipKeyLabel = 'Toggle NoClip'
Config.noClipKey = 'PAGEDOWN'
Config.noClipKeybind = true
-- Map tile URL (empty = use local tiles)
-- e.g. 'https://cdn.example.com/eadmin-map'
-- Directory structure: tiles/{z}/{x}/{y}.png, satellite-tiles/{z}/{x}/{y}.png
Config.mapTileBaseUrl = ''server.lua
player_actions.lua
Hiding built-in actions
Custom actions
Input types
Type
Description
Extra fields
Last updated