> For the complete documentation index, see [llms.txt](https://dirkscripts.gitbook.io/dirkscripts-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dirkscripts.gitbook.io/dirkscripts-documentation/resources/project-cars/installation.md).

# Getting Started

{% hint style="danger" %}
**DEPENDENCIES**

You will need the following resources installed to be able to use this script properly, please ensure this is possible before buying the script\
\
**My Library**\
[dirk\_lib](https://github.com/DirkDigglerz/dirk_lib)
{% endhint %}

## Converting Data from Older Version

Please grab your old `projectCars.json` and place it in the root directory of dirk\_projectCars. The script will auto-detect it on startup and convert any old vehicles to the new SQL table.

## Inventory Instructions

### :outbox\_tray: OX\_INVENTORY/DIRK\_INVENTORY

In order for this to work you will need to add all the data in `INSTALLATION/itemsToAdd/ox_items.lua` to `ox_inventory/data/items.lua`

```lua
['windscreen'] = {
  ['weight'] = 1000,
  ['label'] = 'Windscreen',
},
```

### :question:QB-INVENTORY

For all QB based inventory systems you can find the items in the following folder

`INSTALLATION/itemsToAdd/qb_items.lua` should you wish to manually add them

```lua
['windscreen'] = {
  ['description'] = 'Vehicle Part',
  ['useable'] = true,
  ['weight'] = 1000,
  ['shouldClose'] = false,
  ['type'] = 'item',
  ['label'] = 'Windscreen',
  ['unique'] = false,
  ['name'] = 'windscreen',

},
```
