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