Installation
Import the provided SQL file into your database.
CREATE TABLE IF NOT EXISTS `fs_exclusives` (
`type` varchar(50) NOT NULL,
`index` int(11) NOT NULL DEFAULT 0,
`identifiers` longtext NOT NULL,
`owner` tinyint(4) NOT NULL DEFAULT 0,
`drawable` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`sex` varchar(1) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;For QBCore and Standalone System
add_ace group.admin "fs-exclusive" allowThe script will automatically detect and configure the appropriate framework.
if GetResourceState("es_extended") ~= "missing" then
Config.Framework = "esx"
elseif GetResourceState("qb-core") ~= "missing" then
Config.Framework = "qb"
else
Config.Framework = "standalone"
endConfigure your preferred notification system in the config file.
Last updated