Installation
📦 Installation Steps
Download and place the resource folder (e.g.,
honors-blackmarket
) into yourresources
directory.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
In your
server.cfg
, add:
ensure honors-blackmarket
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