Theme editor

QBCORE Karma-Clothing NP 4.0 (Fully Working) [updated]

creating character good
clothing store good
barber shop good
changeoutfit got error
The problem is there's no way to save your current outfit, that's why you got an error
 
CREATE TABLE `karma_outfits` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`cid` INT(11) NULL DEFAULT NULL,
`name` VARCHAR(255) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`tags` VARCHAR(255) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`slot` INT(11) NULL DEFAULT NULL,
`model` VARCHAR(255) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`drawables_texture` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`props_texture` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`hairColor` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`fadeLayer` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`customHeadModel` VARCHAR(255) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`created_at` TIMESTAMP NOT NULL DEFAULT current_timestamp(),
`updated_at` TIMESTAMP NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `unique_cid_slot` (`cid`, `slot`) USING BTREE
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=31
;
 
  • Post hidden due to user being banned.
Back
Top Bottom