🛠️Installation
Welcome to our installation guide! In this section, we'll walk you through the steps to effortlessly set up the Script S-Warehouse!
Clothingshop System Installation
CREATE TABLE IF NOT EXISTS `S_Warehouse` (
`index` int(11) NOT NULL AUTO_INCREMENT,
`id` int(20) DEFAULT NULL,
`identifier` varchar(50) DEFAULT NULL,
`information` text DEFAULT NULL,
`whitelistet` text DEFAULT "{}",
`cache` text DEFAULT "{}",
PRIMARY KEY (`id`),
KEY `index` (`index`),
KEY `identifier` (`identifier`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
CREATE TABLE IF NOT EXISTS `S_Workbench` (
`index` int(11) NOT NULL AUTO_INCREMENT,
`id` int(20) DEFAULT NULL,
`tabindex` int(20) DEFAULT NULL,
`identifier` varchar(50) DEFAULT NULL,
`information` text DEFAULT "{}",
PRIMARY KEY (`index`),
KEY `identifier` (`identifier`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
-- For some items
INSERT INTO `items`(name, label, `weight`, `rare`, `can_remove`) VALUES
("metall", "Metall", 1, 1 ,2),
("waffenteile", "Waffenteile", 1, 1 ,2),
("aufsatzteile", "Aufsatzteile", 1, 1 ,2),
("flashlight", "Flashlight", 1, 1 ,2),
("luxuryfinish", "Luxuryfinish", 1, 1 ,2),
("suppressor", "Suppressor", 1, 1 ,2),
("extendedclip", "Extendedclip", 1, 1 ,2);Last updated