> For the complete documentation index, see [llms.txt](https://mythic-scripts.gitbook.io/mythic-scripts-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mythic-scripts.gitbook.io/mythic-scripts-documentation/resources/momentum-banking/configuration.md).

# Configuration

All configuration lives in `shared/config.lua` .

### Full Config

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

```lua
Config = {}

Config.Framework = 'ESX'
Config.Inventory = 'ox_inventory'
Config.Notify = 'ox_lib'
Config.InteractionType = 'ox_target'
Config.Currency = '$'
Config.CheckProcessTime = 15

Config.Dispatch = 'cd'

Config.CardWaitTime = 2
Config.CardPrice = 3000

Config.DailyCheckLimit = 10000

Config.BankPeds = {
    { model = `cs_andreas`, coords = vector4(1131.6453, -982.5057, 47.4539, 272.6716) },
    { model = `cs_bankman`, coords = vector4(1131.2222, -978.4822, 47.4539, 272.0524) },

    { model = `cs_barry`, coords = vector4(-1016.1321, -429.4919, 37.3467, 295.0244) },
    { model = `cs_bankman`, coords = vector4(-1015.1008, -431.5168, 37.3467, 297.6187) },
    { model = `cs_andreas`, coords = vector4(-1014.0742, -433.5332, 37.3467, 294.6424) },
}

Config.BankBlip = {
    enabled = true,
    sprite = 78,
    color = 3,
    scale = 0.8,
    name = "Momentum Bank"
}

Config.BankLocations = {
    vector3(1141.1415, -988.0797, 47.4539),
    vector3(-996.5616, -413.3555, 37.6468),
}

Config.AtmLocations = {
    -- Interior Mirror
    vector3(1129.2961, -987.5815, 47.4539),
    vector3(1129.7611, -992.8143, 47.4539),

    -- Drive Thru
    vector3(-1042.3424, -442.8499, 37.1635),
    vector3(-1036.1882, -439.9208, 37.0883),
    vector3(-1030.6674, -436.7168, 37.2554),

    -- Interior Rockford
    vector3(-1015.6259, -408.3445, 37.6467),
    vector3(-1013.2441, -407.1941, 37.6467),
    vector3(-1010.9713, -405.9671, 37.6467),
    vector3(-1008.7283, -404.8320, 37.6467),
}

Config.MailmanJob = 'fraudster'
Config.MailmanLocation = vector4(78.8, 112.5, 81.1, 155.0)
Config.MailmanModel = `s_m_m_postal_01`
Config.LaptopProps = {"mac"}

Config.BlankCheckPricePercentage = 5.0

Config.Checks = {
    ['check_high'] = { min = 50000, max = 100000 },
    ['check_med'] = { min = 10000, max = 49999 },
    ['check_low'] = { min = 1000, max = 9999 }
}

-- Percentage chance that a check will bounce, based on the account's age
Config.FraudRisk = {
    less_than_1_day = 80,   -- 80% risk if the account is less than 24 hours old
    less_than_3_days = 50,  -- 50% risk if the account is less than 3 days old
    less_than_7_days = 25,  -- 25% risk if the account is less than one week old
    less_than_30_days = 10, -- 10% risk if the account is less than one month old
    older_than_30_days = 2  -- 2% risk if the account is established and “trusted”
}
```

{% endcode %}

### Framework

Available provider values:

* `"framework"` — uses (aliases: `"esx", "qb"`)

### Items

{% code title="data/items.lua" expandable="true" %}

```lua
['laptop'] = { 
    label = 'Dark Laptop', 
    weight = 2000, 
    stack = false, 
    close = true 
},
['printer'] = { 
    label = 'Wireless Printer', 
    weight = 3000, 
    stack = false, 
    close = true 
},
['blank_check'] = { 
    label = 'Blank Check', 
    weight = 10, 
    stack = true, 
    close = true 
},
['forged_check'] = { 
    label = 'Forged Check', 
    weight = 10, 
    stack = true, 
    close = true 
},
['bank_card'] = {
     label = 'Momentum Visa Card', 
     weight = 10, 
     stack = false, 
     close = true 
},
```

{% endcode %}

{% hint style="info" %}
All the icons for the inventory are located in ms\_momentumbank/images/\*.png.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://mythic-scripts.gitbook.io/mythic-scripts-documentation/resources/momentum-banking/configuration.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
