Configuration

change the needs in config.lua

config.lua

Config = {}

-- Enable detailed debug logging (true = detailed logs enabled)
Config.Debug = false

-- Which key opens the keybind UI (use keyboard names like "F10", "F1", "HOME", etc.)
Config.ToggleKey = "F10"

-- Keybinds list shown in the UI and automatically registered as commands.
-- Each entry:
--  name      = short display name
--  key       = default keyboard key 
--  desc      = longer description shown in the UI
--  icon      = optional class/icon name 	
Config.Keybinds = {
  {  name = "Open Phone", key = "F1", desc = "Open Your Phone", icon = "🗺️" },
  {  name = "Inventory", key = "F2", desc = "Open your player inventory", icon = "📦" },
  {  name = "Open Bills", key = "F7", desc = "Open Your Bill Menu", icon = "🗺️" },
  {  name = "Interactions", key = "Left ALT", desc = "Used for Interactions", icon = "📦" },
  {  name = "Engine Toggle", key = "L", desc = "Toggle vehicle engine on/off", icon = "⚙️" },
  {  name = "Quick Emote", key = "G", desc = "Perform a quick emote", icon = "🎭" },
  {  name = "Handsup", key = "X", desc = "Perform handsup emote", icon = "🎭" },
  {  name = "Radial Menu", key = "Z", desc = "Opens Radial Menu", icon = "⚙️" },
}

-- Interactive guides: a list of guides, each with steps (title + content).
-- Guides are shown inside the same UI with step navigation.
Config.Guides = {
  {
    id = "getting_started",
    title = "Getting Started",
    description = "A quick walkthrough to get you playing on the server.",
    steps = {
      { title = "Welcome", content = "Welcome to the server! Press F10 anytime to open the keybinds & guides panel." },
      { title = "Spawn & Basics", content = "Use /spawn or the spawn menu to choose your character. Check F2 to open inventory." },
      { title = "Driving", content = "Enter a vehicle to use driving controls. Press L to toggle the engine." },
      { title = "Help & Rules", content = "Open the server rules from the main menu and read them carefully." },
    }
  },
  --add more as you want
  --[[{
    id = "roleplay_basics",
    title = "Roleplay Basics",
    description = "Tips for staying in-character and enjoying roleplay.",
    steps = {
      { title = "Stay Immersed", content = "Maintain your character's backstory and act according to their motivations." },
      { title = "Use Voice Wisely", content = "Use proximity voice for in-character talk and the global channel only when necessary." },
      { title = "Conflict Resolution", content = "Resolve disputes calmly and follow server guidelines." },
    }
  }]]--
}


return Config

Last updated