githubEdit

Installation

Dependencies

Make Sure all the dependencies are installed.

Required

ox_libarrow-up-right

ox-targetarrow-up-right or qb-targetarrow-up-right

Config Setup

Adjust config.lua according to your liking

Make sure to set your map, target, clothing, billing, society script

SQL Installation

Now execute this query into your server database using heidisql or phpmyadmin.

chevron-rightESXhashtag
CREATE TABLE IF NOT EXISTS `pl_pizzathis` (
          `stock` longtext DEFAULT NULL,
          `state` varchar(5) NOT NULL DEFAULT 'open'
) ENGINE=InnoDB DEFAULT CHARSET=armscii8 COLLATE=armscii8_bin;

INSERT INTO `addon_account` (name, label, shared) VALUES
        ('society_pizzathis', 'Pizza This', 1);

INSERT INTO `datastore` (name, label, shared) VALUES
        ('society_pizzathis', 'Pizza This', 1);

 INSERT INTO `jobs` (name, label,whitelisted) VALUES
        ('pizzathis', 'Pizza This',1);

INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
        ('pizzathis',0,'cashier','Cashier',20,'{}','{}'),
        ('pizzathis',1,'cook','Cook',40,'{}','{}'),
        ('pizzathis',2,'staff','Staff',60,'{}','{}'),
        ('pizzathis',3,'manager','Manager',85,'{}','{}'),
        ('pizzathis',4,'boss','Owner',100,'{}','{}');
chevron-rightQBCore or Qboxhashtag
CREATE TABLE IF NOT EXISTS `pl_pizzathis` (
   `stock` LONGTEXT DEFAULT NULL,
   `state` VARCHAR(5) NOT NULL DEFAULT 'open'
) ENGINE=InnoDB DEFAULT CHARSET=armscii8 COLLATE=armscii8_bin;

Items

Add the items into your server

chevron-rightOX Inventoryhashtag
chevron-rightQB Inventoryhashtag
chevron-rightQuasar Inventoryhashtag
chevron-rightESX Items SQLhashtag

For QBCore Only

Add the Following in qb-core/shared/jobs.lua

For Qbox add in qbx_core->shared->jobs.lua

Consumables

chevron-rightQB Smallresourceshashtag

Add in qb-smallresourcse/config.lua

chevron-rightJim Consumableshashtag

Add the following in jim-consumables/shared/consumables.lua

Add Images to Inventory

Copy all the Images folder and paste it in your inventory Images folder

Log Setup - Optional

To enable discord logs make sure to add your webhook in the server->Log.lua File

Optional Dj Custom Props

If you have purchased the DJ Burgershot Props https://djscollections.com/package/5669923arrow-up-right just install it and set the Config.UseDjItems = true

Last updated