# Config

shared/config.lua

```lua
Config = {}

--[[====[ SPARK-DEVELOPMENTS ]====]]
-- Thank you for buying this resource!
-- DOCS - https://spark-developments.gitbook.io

--[[====[ GENERAL SETTINGS ]====]]
Config.EnableAmmo = false -- If false the plane will have infinite ammo
Config.UseMouse = false -- Should the camera use mouse or keyboard?

Config.RocketPickUpPoints = { -- The points where you can pick up the bombs and load them into planes
    vector3(-2111.09, 3242.35, 32.61)
}

--[[====[ FEATURES SETTINGS ]====]]
Config.ImpactSmoke = {
    Enabled = true, -- Should there be smoke after a bomb explodes?
    Duration = 5, -- The duration of the smoke (in minutes)
}

--[[====[ RESTRICTION SETTINGS ]====]]
Config.RestrictDriver = false -- Restrict the driver from using the bomb bay?
Config.DropCooldown = 0.7 -- The cooldown between each bomb (in seconds)
Config.AllowedVehicles = { -- Which vehicles will be allowed to use the bomb bay system.
    [`hydra`] = true,
}

--[[====[ KEYMAPPING SETTINGS ]====]]
Config.KeyMapping = { -- Command, Description, Key
    Command = "bombcam",
    Label = "Toggle Plane Bomb Cam",
    DefaultKey = "H"
}
```


---

# 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://spark-developments.gitbook.io/dev/military/bombbay/config.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.
