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:

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 Framework

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

ALTER TABLE players ADD COLUMN nails LONGTEXT;
['harem'] = {
    label = 'Harem Saloon',
    defaultDuty = true,
    offDutyPay = false,
    grades = {
        ['0'] = {
            name = 'Learner',
            payment = 50
        },
        ['1'] = {
            name = 'Beautician',
            payment = 75
        },
        ['2'] = {
            name = 'Manager',
            isboss = true,
            payment = 100
        }
    },
},

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

Configuration

Now you can go to the config.lua file and customize the script as you see fit.