💾Installation

The installation process of carcontrol

2na_carcontrol is a modern and multi-functional car control menu with a stunning UI. It has several features like a parking camera, listening to music with other players, etc.

This script requires 2na_core to function properly, don't forget to install it before installing 2na_chat

Step 1

Extract the zip file you got from our discord server to the resources folder of your server.

Step 2

Execute the SQL file given with the 2na_carcontrol files. (You can find the SQL file in 2na_carcontrol's root)

If you are not planning to use the mileage system then you can skip this step but don't forget to disable the mileage system from the config as well.

Step 3

Open Config.lua file placed inside 2na_carcontrol's root folder. As you can see in this code block, there are currently several options that can be configured for 2na_carcontrol.

Config = {}

Config.MenuKey = 'B'

-- Enable mileage system
Config.EnableMileageSystem = true

-- In how many milliseconds should the mileage system be run // Decrementing this value will increase the rise of mileage in every car
Config.MileageUpdateInterval = 1500

-- Script will never count the mileage of cars with these plates
Config.IgnoredPlates = {
    "ADMIN",
    "ADMINCAR"
}

Even though 2na_carcontrol comes with B as its default menu key, changing it to something different before starting the game may be a better practice as it prevents from scripts having the same key bind.

If you try to change the menu key from config after joining the game it won't work. You have to change the menu key from FiveM's client because after joining the game for the first time with this script, the system automatically registers the B as an open menu key and it does not change it unless you change it manually.

Step 4

Add ensure 2na_carcontrol in your server.cfg file and you're ready to go!

Last updated