Client Configuration

The cl_config.lua file contains client-side specific settings, such as player outfits and in-game tutorials.

👕 Outfits

This section defines the clothing worn by players while on the job. You can configure separate outfits for workwear (standard cleaning clothes) and hazmatSuit (required for handling dangerous crime scene elements). Both male and female variants are supported.

  outfits = {
    workwear = {
      male = {
        ["mask"] = { item = 0, texture = 0 },
        -- ...
      },
      female = {
        -- ...
      },
    },
    hazmatSuit = {
      -- ...
    }
  },

📖 Tutorials

Here you can define the Frequently Asked Questions (FAQ) that players can access in-game through the dashboard. It helps new players understand how the job works.

  tutorials = {
    {
      id = 1,
      question = "How do I start working?",
      answer = "Go to the Crime Scene Cleaner base blip and interact with the boss NPC. You can also open the dashboard with your job menu key. The dashboard only opens if you are assigned to the cleaner job."
    },
    -- ...
  },