Installation

Requirements

  • FiveM Server running on GTA V.

  • ox_target – for interactive target zones.

  • ox_inventory – for inventory checks.

  • ox_lib – for progress bar functionality and other utilities.

Installation

  1. Place the resource folder (e.g., dark-wood) in your server’s resources directory.

  2. Ensure the following files are included:

    • fxmanifest.lua

    • config.lua

    • locales.lua

    • client.lua

    • server.lua

  3. In your fxmanifest.lua, confirm that the shared scripts and dependencies are correctly defined:

    luaZkopírovatfx_version 'cerulean'
    game 'gta5'
    lua54 'yes'
    
    dependencies {
        'ox_lib',
        'ox_inventory'
    }
    
    shared_scripts {
        'config.lua',
        'locales.lua',
    }
    
    client_scripts {
        'client.lua'
    }
    
    server_scripts {
        'server.lua'
    }
  4. Restart your server and ensure the resource is started (e.g., using ensure dark-wood).

Last updated