# Installation

## <mark style="color:blue;">**Asset dependencies**</mark>

**This asset has some dependencies that are completely mandatory and important for the operation of the asset. If you do not have these dependencies, your asset will probably start and have some error or message in its command console.**

| Dependencies | Download Link                            |
| ------------ | ---------------------------------------- |
| ox\_lib      | <https://github.com/overextended/ox_lib> |

***

## <mark style="color:blue;">Database</mark>

<details>

<summary>QBCore</summary>

```sql
ALTER TABLE player_vehicles
ADD `rental_time` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT '-1',
ADD `type_vehicle` varchar(255) NOT NULL DEFAULT 'normal',
ADD `rent_price` int(11) NOT NULL DEFAULT 0,
ADD `rent_duration` int(11) NOT NULL DEFAULT -1;
```

</details>

<details>

<summary>ESX</summary>

**Soon...**

</details>

***

## <mark style="color:blue;">Item</mark>

<details>

<summary>QBCore</summary>

```lua
rentalpaper = {
    name = 'rentalpaper',                        
    label = 'Rental Paper',                
    weight = 0,            
    type = 'item',         
    image = 'rentalpaper.png',                 
    unique = true,          
    useable = false,    
    shouldClose = false,      
    combinable = nil,   
    description = 'Rental Paper.'
},
```

</details>

<details>

<summary>ESX</summary>

Soon...

</details>

***
