Installation

📦 Installation Steps

  1. Download and place the resource folder (e.g., honors-blackmarket) into your resources directory.

  2. Make sure the following core files are included:

    • fxmanifest.lua

    • config.lua

    • locales.lua

    • client.lua

    • server.lua


⚙️ fxmanifest.lua Configuration

Your fxmanifest.lua should be set up like this:

fx_version 'cerulean'
game 'gta5'
lua54 'yes'

dependencies {
    'ox_lib',
    'ox_inventory',
    'ox_target',
    'vms_notifyv2'
}

shared_scripts {
    '@ox_lib/init.lua',
    'config.lua',
    'locales.lua',
}

client_scripts {
    'client.lua'
}

server_scripts {
    'server.lua'
}

🚀 Starting the Script

  1. In your server.cfg, add:

ensure honors-blackmarket
  1. Restart your server.


🌐 Localization

Set your preferred language in config.lua:

Config.Locale = "en" -- or "cs"

All strings are managed via locales.lua, making it easy to translate or modify the in-game text.

Last updated