🛠️Installation
Welcome to our installation guide! In this section, we'll walk you through the steps to effortlessly set up the Script S-Clothingshop!
Clothingshop System Installation
CREATE TABLE IF NOT EXISTS `SClothingOutfits` (
`index` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(50) DEFAULT NULL,
`outfitname` varchar(50) NOT NULL,
`model` varchar(50) DEFAULT NULL,
`skin` text DEFAULT NULL,
`qrcode` varchar(50) DEFAULT NULL,
`permqrcode` varchar(50) DEFAULT NULL,
PRIMARY KEY (`index`),
KEY `identifier` (`identifier`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;Last updated