STORM Developments
  • 👋Welcome to STORM Developments
  • Discord
  • YouTube
  • Our store
  • servers
    • 🛠️QBCore NoPixel 3.5 Inspired
      • 📝V1
      • 📝V2
    • 🛠️QBCore RP Server
      • 📝How to Install
  • scripts
    • 🏦st_banking
      • 📝How to Install
      • 🧑FAQ
    • 🥘st_snrbuns
      • 📝How to Install
      • 🔷How To Add New Food Items
    • 🔫st-cashexchange
      • 📝How to Install
    • 💴st_banking v2
      • 📝How to Install
      • 🧑FAQ
    • 🌫️st_hud
      • 📝How to Install
      • 🧑FAQ
    • ⛓️st_inventory
      • 📝How to Install
      • 🧑FAQ
    • 👓st_inventory v2
      • 📝How to Install
  • 🚗st_garages
    • 📝How to Install
    • 🧑FAQ
  • 🤵st_multichar
    • 📝How to Install
    • 🧑FAQ
  • 🔔st_notify
    • 📝How to Install
  • Free Products
    • 🚓st_radar
      • 📝How to Install
Powered by GitBook
On this page
  1. scripts
  2. st_inventory v2

How to Install

If you face any issues, you can contact us on our Discord and we will help you to the utmost of our abilities.

Setup Guide

Follow the steps below:

  1. Download the script after you've bought it from our website.

  2. Remove any existing inventory scripts.

  3. Extract the provided files

  4. Run the SQL provided along with the files. Below is a snippet of the SQL provided:

CREATE TABLE IF NOT EXISTS `gloveboxitems` (
  `id` int NOT NULL AUTO_INCREMENT,
  `plate` varchar(255) DEFAULT NULL,
  `items` json DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plate` (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

CREATE TABLE IF NOT EXISTS `stashitems` (
  `id` int NOT NULL AUTO_INCREMENT,
  `stash` varchar(255) DEFAULT NULL,
  `items` json DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `stash` (`stash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

CREATE TABLE IF NOT EXISTS `trunkitems` (
  `id` int NOT NULL AUTO_INCREMENT,
  `plate` varchar(255) DEFAULT NULL,
  `items` json DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plate` (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  1. After running the SQL, go ahead and configure the script to your liking by changing the language in the config and so on.

  2. Enjoy the script.

If you face any difficulties, you can contact us anytime on our Discord by creating a support ticket.

Discord: https://discord.gg/storm-dev

Previousst_inventory v2Nextst_garages

Last updated 1 year ago

👓
📝