# Nitro

**Desc:**

* **Value:** `'Toggle nitro'`
* **Explanation:** This string serves as a short description or label for the nitro feature. It informs users that this setting toggles the nitro functionality on or off.

***

### Database Table Settings

**Tables:**

* **GaragesTable:** `'owned_vehicles'`
  * **Explanation:** This is the name of the database table that stores information about owned vehicles.
* **OwnerColumn:** `'owner'`
  * **Explanation:** This column in the `owned_vehicles` table indicates the owner of each vehicle.

{% hint style="info" %}
{% code overflow="wrap" %}

```
The script will automatically add a nitro INT(11) column to this table if it doesn't exist.
```

{% endcode %}
{% endhint %}

***

### Nitro Force

**NitroForce:**

* **Value:** `1.5`
* **Explanation:** This parameter sets the multiplier for the nitro boost. A value of 1.5 means that when nitro is activated, the vehicle’s acceleration or force is increased by 1.5 times.

***

### Nitro Duration

**RemoveNitroOnMilliseconds:**

* **Value:** `2`
* **Explanation:** This setting determines the duration (in milliseconds) after which the nitro effect is removed or deactivated. In this case, the effect is set to be very brief (2 ms), which might be used as an internal parameter to control the nitro decay rate.

***

### Nitro Item

**Item:**

* **Value:** `'nitro'`
* **Explanation:** This specifies the name of the item used to trigger or represent the nitro boost. It is likely used to verify whether the vehicle has nitro available (e.g., via inventory checking or command execution).

{% code title="shared/config.lua" %}

```lua
KOJA.Nitro = {
    Enabled = true,
    Key = 'N', 
    Desc = 'Toggle nitro', 
    Tables = {
        GaragesTable = 'owned_vehicles',
        OwnerColumn = 'owner'
    },
    NitroForce = 1.5,
    RemoveNitroOnMilliseconds = 2,
    Item = 'nitro'
}
```

{% 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.kojascripts.eu/new/hud/configuration/nitro.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.
