> For the complete documentation index, see [llms.txt](https://risenova-scripts.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://risenova-scripts.gitbook.io/docs/risenova-vehicle-control/risenova-vehicle-control.md).

# RiseNova Vehicle Control

RiseNova Vehicle Control is a premium remote vehicle control system designed for FiveM roleplay servers. The system allows players to remotely scan, connect, track, and control vehicles using a futuristic tablet interface.

The script is optimized, configurable, and supports multiple frameworks and inventory systems.

### <mark style="color:$primary;">Features</mark>

<mark style="color:$success;">Vehicle Scanner</mark>

* Scan nearby vehicles
* Connect to vehicles in real time
* Animated scanner interface

<mark style="color:$success;">Remote Vehicle Controls</mark>

* Start / Stop Engine
* Lock / Unlock Vehicles
* Open / Close Doors
* Trigger Vehicle Alarm
* Track Vehicles
* Disable Engines
* Move Vehicles Forward / Backward
* Turn Vehicles Left / Right
* Execute Vehicle Blast Protocol

<mark style="color:$success;">Vehicle Tracking</mark>

* Live map blip tracking
* Stop tracking anytime
* Distance display support

<mark style="color:$success;">Blast System</mark>

* Blast Chips required
* Configurable blast security code
* Remote vehicle destruction

<mark style="color:$success;">Vehicle Tech Dealer</mark>

* Vehicle Control Tablet
* Control Chips
* Blast Chips

### <mark style="color:$primary;">Supported Frameworks</mark>

* ESX
* QBCore
* QBOX

### <mark style="color:$primary;">Supported Inventories</mark>

* ox\_inventory
* qb-inventory

Custom inventories can be integrated inside **server/inventory.lua**

### <mark style="color:$primary;">Supported Target Systems</mark>

* ox\_target
* qb-target

### <mark style="color:$primary;">Dependencies</mark>

* ox\_lib
* ox\_inventory *(optional)*
* qb-inventory *(optional)*
* ox\_target *(optional)*
* qb-target *(optional)*

### <mark style="color:$primary;">Installation</mark>

1. Place the resource inside your resources folder.
2. <mark style="color:red;">Make sure the resource name is exactly:</mark>&#x20;

```
RiseNova_VehicleControl
```

3. Add the resource to your server.cfg

```
ensure RiseNova_VehicleControl
```

4. Configure the script through **config.lua**
5. Add the required inventory items.
6. Add the images to your inventory.

{% tabs %}
{% tab title="qb-inventory" %}

```
["vehicle_tablet"] = {["name"] = "vehicle_tablet", ["label"] = "Vehicle Control Tablet", ["weight"] = 1000, ["type"] = "item", ["image"] = "vehicle_tablet.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A tablet used to control nearby vehicles."}, 
["vehicle_chip"] = {["name"] = "vehicle_chip", ["label"] = "Vehicle Control Chip", ["weight"] = 100, ["type"] = "item", ["image"] = "vehicle_chip.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A chip required to control vehicles."}, 
["blast_chip"] = {["name"] = "blast_chip", ["label"] = "Blast Chip", ["weight"] = 100, ["type"] = "item", ["image"] = "blast_chip.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A dangerous chip used to destroy vehicles."},
```

{% endtab %}

{% tab title="ox\_inventory" %}

```
['vehicle_tablet'] = {
label = 'Vehicle Control Tablet',
weight = 1000,
stack = true,
close = true,
description = 'A tablet used to control nearby vehicles.',
client = {
image = 'vehicle_tablet.png'
}
},

['vehicle_chip'] = {
label = 'Vehicle Control Chip',
weight = 100,
stack = true,
close = true,
description = 'A chip required to control vehicles.',
client = {
image = 'vehicle_chip.png'
}
},

['blast_chip'] = {
label = 'Blast Chip',
weight = 100,
stack = true,
close = true,
description = 'A dangerous chip used to destroy vehicles.',
client = {
image = 'blast_chip.png'
}
},
```

{% endtab %}
{% endtabs %}
