๐Ÿ› ๏ธInstallation

Welcome to our installation guide! In this section, we'll walk you through the steps to effortlessly set up the Script S-Inventory!

Inventory System Installation

Follow this steps to install the script:

  1. Download the Script from Keymaster

  2. Drag the Script into your resources

  3. Add this to you your server.cfg: start S-Inventory

  4. Import the SQL

CREATE TABLE IF NOT EXISTS `stashdata` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `typeofdata` varchar(15) NOT NULL,
  `stashname` varchar(50) NOT NULL,
  `stashmaxweight` varchar(50) NOT NULL,
  `uniqeid` varchar(50) NOT NULL,
  PRIMARY KEY (`id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;

CREATE TABLE IF NOT EXISTS `stashdataitems` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `uniqeid` varchar(50) NOT NULL,
  `typeofdata` varchar(50) NOT NULL,
  `itemname` varchar(50) NOT NULL,
  `itemlabel` varchar(50) NOT NULL,
  `itemcount` varchar(50) NOT NULL,
  PRIMARY KEY (`id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
  1. If you want the items from the Video:

INSERT INTO `items`(name, label, `weight`, `rare`, `can_remove`) VALUES
("bread", "Bread", 1, 1 ,2),
("cheeseburger", "Cheese Burger", 1, 1 ,2),
("cheese", "Cheese", 1, 1 ,2),
("paper", "Paper", 1, 1 ,2),
("weed", "Weed", 1, 1 ,2),
("filter", "Filter", 1, 1 ,2),
("doener", "Doenner", 1, 1 ,2),
("salat", "Salat", 1, 1 ,2);
  1. Restart the Server and play S-Inventory on your Server!

Thats All! Enjoy the Script on your Server!

Last updated