# Exports

> This exports are **client side** only.

#### isVINscratched(vehicle?)

> Returns true if current vehicle have its VIN scratched, param vehicle is optional.
>
> **Parameters:**
>
> * **vehicle?**:`entity` Vehicle entity
>
> **Returns:**
>
> * **result**:`boolean`
>
> {% code title="" %}
>
> ```lua
> local vehicle = GetVehiclePedIsIn(PlayerPedId(),false)
> local result = exports['av_boosting']:isVINscratched(vehicle)
> print(result) -- will print true/false
> ```
>
> {% endcode %}

#### isBoosting(vehicle?)

> Returns `true` if the specified vehicle is part of an active Boosting contract.&#x20;
>
> Use this export to block standard lockpick events, ensuring players can only unlock boosting vehicles using the script's authorized methods.
>
> **Parameters:**
>
> * **vehicle?**:`entity` Vehicle entity
>
> **Returns:**
>
> * **result**:`boolean`
>
> {% code title="" %}
>
> ```lua
> local vehicle = GetVehiclePedIsIn(PlayerPedId(),false)
> local result = exports['av_boosting']:isBoosting(vehicle)
> print(result) -- true/false
> ```
>
> {% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.av-scripts.com/laptop-pack-v3/boosting/exports.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
