Markhor Scripts
  • Info
    • 👋Introduction
    • 🛒Store
    • 🆘Support
    • 🔒FiveM Asset Escrow
  • Scripts
    • 🌎Markhor Bridge
      • 🧰Installation
      • ⚙️Configuration
    • 💥Markhor ATM Robbery
      • 🧰Installation
      • ⚙️Configuration
    • 📦Markhor Containers
      • 🧰Installation
      • ⚙️Configuration
    • 🏦Markhor Bank Robbery
      • 🧰Installation
      • ⚙️Configuration
    • 🔫Markhor Airsoft
      • 🧰Installation
      • ⚙️Configuration
    • 🏁Markhor Racing
      • 🧰Installation
      • ⚙️Configuration
    • 🚘Markhor Cartheft
      • 🧰Installation
      • ⚙️Configuration
    • 🛠️Markhor Vehicleparts
      • 🧰Installation
      • ⚙️Configuration
    • 🐰Markhor Easter Hunt
      • 🧰Installation
      • ⚙️Configuration
  • MAPS
    • 💸Cash Exchange
      • 🧰Installation
Powered by GitBook
On this page
  1. Scripts
  2. Markhor Racing

Installation

PreviousMarkhor RacingNextConfiguration

Last updated 11 months ago

Install the resource

  1. Download the resource via

  2. Place the markhor_racing folder in the resources folder of your FiveM server

  3. Add ensure markhor_racing to your server.cfg

  4. Restart 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;
🏁
🧰
keymaster