# Config

shared/config.lua

```lua
Config = {}

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

--[[====[ GENERAL SETTINGS ]====]]
Config.MoneySymbol = '$' -- Change to the money symbol you wish to use (UI)
Config.ToggleBlips = true -- Enable blip for each bank

Config.ToggleATM = true -- Will you be able to interact with ATMs
Config.ATMProps = { -- Don't touch if you don't know what this means
    `prop_atm_01`,
    `prop_atm_02`,
    `prop_atm_03`,
    `prop_fleeca_atm`
}

Config.ToggleBankPeds = true -- Spawn bank teller peds at bank locations
Config.BankPedModel = 'a_m_m_business_01' -- Ped model for bank tellers

Config.BankLocations = { -- Bank Locations
    vector4(241.44, 227.19, 106.29, 170.43),
    vector4(313.84, -280.58, 54.16, 338.31),
    vector4(149.46, -1042.09, 29.37, 335.43),
    vector4(-351.23, -51.28, 49.04, 341.73),
    vector4(-1211.9, -331.9, 37.78, 20.07),
    vector4(-2961.14, 483.09, 15.7, 83.84),
    vector4(1174.8, 2708.2, 38.09, 178.52),
    vector4(-112.22, 6471.01, 31.63, 134.18),
}

--[[====[ SOCIETY SETTINGS ]====]]
Config.Societies = { -- Which jobs have bank accounts
    "police",
    "ambulance",
}
```


---

# 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/roleplay/banking/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.
