βš™οΈInstallation

Here you can find the basic guide to install dd-nailshopV2

ESX Framework

The installation of our script is divided into a few very simple steps:

  • first of all download the script and insert it inside your server

  • then run this sql code inside your database

ALTER TABLE users ADD COLUMN nails LONGTEXT;

INSERT INTO `addon_account` (name, label, shared) VALUES
	('society_harem', 'Harem', 1)
;

INSERT INTO `datastore` (name, label, shared) VALUES
	('society_harem', 'Harem', 1)
;

INSERT INTO `addon_inventory` (name, label, shared) VALUES
	('society_harem', 'Harem', 1)
;

INSERT INTO `jobs` (name, label) VALUES
	('harem', 'Harem Saloon')
;

INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
	('harem', 0, 'learner', 'Learner', 50,'{}','{}'),
	('harem', 1, 'beautician', 'Beautician', 75,'{}','{}'),
	('harem', 2, 'boss', 'Manager', 100,'{}','{}')
;

The installation is finished, you can go to the configuration paragraph to customize your script

QB-Core and Qbox Framework

the installation of our script is divided into a few very simple steps:

  • first of all download the script and insert it inside your server

  • then run this sql code inside your database

  • QB-Core: now you can go to qb-core/shared/jobs.lua and insert this code:

  • QBox: now you can go to qbx_core/shared/jobs.lua and insert this code:

The installation is finished, you can go to the configuration paragraph to customize your script

Configuration

General

TARGET_TYPE
  • Description: allows to enable and change the target script (3rd eye)

  • Variable type: string

  • Options: none, qb-target, ox_target

CHAIR_PROP
  • Description: the script provides an animation system that makes the player sit down. If you use our Harem Beauty Saloon you don't need to change the value. If you use another salon you will need to enter the prop name of the chair closest to the marker. If you don't know what to do don't touch anything, the script will just run without the players sitting down

  • Variable type: string

  • Options: [PROP_NAME]

CHAIR_COORDS
  • Description: the script provides an animation system that makes the player sit down. If you use our Harem Beauty Saloon you don't need to change the value. This parameter indicates the distance at which the ped will sit relative to the chair (it is a simple coordinate adjustment that must be found by trial and error) Example: if the chair is at coordinates 10.0, 10.0, 10.0 and the player went to sit at those exact coordinates would interpenetrate with the chair, this parameter (imagining it is set to -0.01, -0.6, 0.1 which are the default values) will make the ped sit at 9.99, 9.4, 10.1.

  • Variable type: table

  • Options:

CURRENT_LANG
  • Description: select script language

  • Variable type: string

  • Options: en, fr, es, it, de, ja, pt, sv

PRICE
  • Description: select how much cost any nails change (pay on save)

  • Variable type: number

  • Options: [PRICE]

SHOP_BLIPS
  • Description: here you can insert/modify the coordinates and other values of the blip on the map (the custom one created by us is present by default). You don't need to touch anything if you use our Harem Beauty Saloon

  • Variable type: table

  • options:

Enable job mode

1

Step 1

Set USE_JOB to TRUE

2

Step 2

Set JOB_NAME to your JOB

3

Step 3

Edit JOB_POSITIONS for your positions in the MLO (By default it will work in the harem saloon location San Andreas Avenue)

4

Step 4

Add or remove vehicles in VEHICLES (by default you will find the vehicle vitoharem, contained in the DLC Business)

5

Step 5

Edit SKINS to your employee clothes (by default you will find the harem clothes, contained in the DLC Business)

6

Step 6

Edit BILLING_KEY if you want to use a key different by F6

7

Step 7

If you use a script other than the basic script in your framework set the CUSTOM_BILLING_SYSTEM variable to TRUE and go to client/editable.lua and edit the customBillingSystem function

Disable job mode

1

Step 1

Set USE_JOB to FALSE

2

Step 2

Edit SHOPS for your positions in the MLO (By default it will work in the harem saloon location San Andreas Avenue)

Configuration for Las Lagunas Blvd Harem Saloon

Replace the corresponding code inside your config.lua

🚨 WARNING 🚨

Please be aware: Restarting the script while inside the server will cause it to stop working. Proceed with caution.

Changing the name of the script will prevent it from working, use the name dd-nailshopV2

Last updated