wrenchInstallation

1. Download Resource

Download the purchased resource from CFX Portalarrow-up-right - the official site of FiveM with purchased resources.

2. Install Required Dependencies

This script needs a few extra resources to work properly. Below you will find a list of things to download - click the link, download and upload to your server just like other resources.

3. Import Database Tables

This is a very important step - without it, the script will not work properly. Depending on the framework you are using (ESX, QBCORE or QBOX), select the appropriate section below and paste the SQL code into your database.

chevron-rightSQL for Databasehashtag

-- Create the baddie stats state table
CREATE TABLE IF NOT EXISTS baddie_stats (
  identifier varchar(50) NOT NULL,
  name varchar(50) DEFAULT NULL,
  sales int(11) DEFAULT 0,
  PRIMARY KEY (identifier)
);

4. Add Required Items

Add the items to your inventory system’s item file or database, then copy the images from orbit-onlypics/install/images into your inventory’s image folder.

chevron-rightESX Installationhashtag

chevron-rightOX Inventory Installationhashtag

chevron-rightQBCORE Installationhashtag

chevron-rightQBOX Installationhashtag

5. Configuration

Configure config.lua to match your server framework and preferences, and customize the available content options for the female OnlyPics job.

scrollConfiguration Fileschevron-right

6. Start Resource

To start a resource in your server.cfg, ensure that it begins after your framework has been initiated. For instance, if you are using a framework like es_extended, you should start resource after it, like so:

Last updated