💡Installation

  • Download & Extract

    • Acquire the script from your chosen source (e.g., Tebex).

    • Place the folder in your FiveM resources directory, for example:

      resources/[local]/outfit_bag
    • Rename if necessary.

  • Add to Server Config

    ensure outfit_bag
    • Replace outfit_bag with the exact folder name if it differs.

  • Dependencies

    • MySQL-Async or an equivalent DB connector must be installed.

    • ESX or QBCore (framework detection logic is in Framework = 'esx' or 'qbcore'

If you want to use the default items:

  • For ESX, you can add them with the SQL snippet below.

  • For QB, the items are already included in the script folder.

INSERT IGNORE INTO items (name, label, weight) VALUES
('outfit_bag', 'Outfit Bag', 1),
('outfit_bag_private', 'Private Outfit Bag', 1);

Last updated