🧰Installation
Install the resource
Download the resource via keymaster
Place the markhor_airsoft folder in the resources folder of your FiveM server
Add
ensure markhor_airsoft
to your server.cfgRestart the server
Run the following SQL code to your data base
DROP TABLE IF EXISTS `markhor_airsoft_general`;
CREATE TABLE `markhor_airsoft_general` (
`id` int(0) NOT NULL AUTO_INCREMENT,
`map` longtext DEFAULT NULL,
`stats` longtext DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB;
DROP TABLE IF EXISTS `markhor_airsoft_personal`;
CREATE TABLE `markhor_airsoft_personal` (
`id` int(0) NOT NULL AUTO_INCREMENT,
`license` longtext DEFAULT NULL,
`name` longtext DEFAULT NULL,
`map` longtext DEFAULT NULL,
`stats` longtext DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB;
Last updated